3 - support recursive download even if filename is NULL and we hence
4 do not generate files on disk (use temp_filename)
5 - bound parallelism (# fs downloads)
6 - distinguish in performance tracking and event signalling between
7 downloads that are actually running and those that are merely in the queue
8 - persistence support (publish, unindex, search, download)
9 - active migration support (in fs or in datastore or new daemon?)
10 - gnunet-service-fs (hot-path routing, load-based routing, nitpicks)
11 - [gnunet-service-fs.c:208]: member 'LocalGetContext::results_bf_size' is never used
12 - [gnunet-service-fs.c:501]: member 'PendingRequest::used_pids_size' is never used
13 - [gnunet-service-fs.c:654]: member 'ConnectedPeer::last_client_replies' is never used
14 - [gnunet-service-fs.c:669]: member 'ConnectedPeer::avg_delay' is never used
15 - [gnunet-service-fs.c:675]: member 'ConnectedPeer::avg_priority' is never used
16 - [gnunet-service-fs.c:688]: member 'ConnectedPeer::pending_requests' is never used
17 - [gnunet-service-fs.c:694]: member 'ConnectedPeer::last_p2p_replies_woff' is never used
18 - [gnunet-service-fs.c:700]: member 'ConnectedPeer::last_client_replies_woff' is never used
20 + active reply route caching design & implementation of service; gap extension!
22 - good to have for transport/DV evaluation!
24 - write DV API (need to move declarations from dv_api.c to gnunet_dv_service.h!)
25 - implement DV service
26 - implement DV library (looks done)
27 - implement DV transport plugin
29 - implement performance tests (needs tbench)
31 - needs more testing (especially F2F topology) & transport blacklisting
33 - only connect() sockets that are ready (select()) [Nils]
34 [On W32, we need to select after calling socket before doing connect etc.]
36 - use g_main_context_set_poll_func to integrate GTK with GNUnet Scheduler!? (YUCK!)
37 - OR: add scheduler API to enable integration with GTK main loop instead of doing our own select
38 - use g_main_context_pending, g_main_context_query / g_main_context_check / g_main_context_dispatch
39 and NEVER g_main_loop_run (can this be done? might be the clean way to do this! But how
40 to integrate this with "gtk_main"? Docu says:
41 "It's OK to use the GLib main loop directly instead of gtk_main(), though it involves
42 slightly more typing. See GMainLoop in the GLib documentation."
43 => so maybe it "just works"?
45 - design & implement new setup tool
49 - good to have for DV/DHT evaluation!
51 - implement DHT service
53 - implement performance tests
57 - need to get rid of synchronous API for service starts (cause all kinds of problems)
58 [=> eliminate for need to tell ARM about service starts most of the time!] [Safey]
59 - better tracking of which config changes actually need to cause process restarts by ARM.
60 - listen for requests to discover dependencies between services (and avoid
61 having to explicitly program start requests)
62 - better crash management (attach debugging support, capture and analyze
63 debug output, detect random vs. deterministic crashes)
66 - datastore reservation (publishing)
67 - search: availability probes
68 - location URIs (publish, search, download)
69 - non-anonymous FS service (needs DHT)
70 + DHT integration for search
71 + CS-DHT-functions (DHT-put of LOC)
72 + P2P-functions (DHT-get)
73 - collection API & tests
74 + gnunet-pseudonym (collection support)
75 - implement FS performance tests
82 * Determine RC bugs and fix those!
84 - modify configuration to allow controlling connections for non-local starts
85 - testbed creation with topology (needs working F2F topology)
87 - implement testcases for distributed testing
88 - test basic peer re-configure
89 - test topology creation
90 - test churn generation
91 - consider changing API for peer-group termination to
92 call continuation when done
97 - integration with transport service
98 * MYSQL database backends: [CG]
104 - expand bibliography
105 - convert documentation pages to books
106 - update books (especially for developers)
107 - create good Drupal theme for GNUnet
108 - make a NICE download page and figure out how to
109 enable developers to publish TGZs nicely
110 - port "contact" page
111 - add content type for "todo" items?
112 * POSTGRES database backends: [CG]
115 * Determine RC bugs and fix those!
119 - SMTP transport backend
120 - HTTPS transport backend
121 + improved HTTPS support in MHD
123 - Implement method of learning our external addresses from
124 other peers; need some kind of threshold-based
125 scheme, limiting both the total number of addresses that we accept
126 this way as well as requiring multiple confirmations; also, we
127 should possibly try to confirm that the given address works for
128 us ourselves (loopback-style) before adding it to the list
129 + we may be able to simplify WELCOME messages (no need to add
130 addresses there anymore, but may help to learn them there anyway...).
131 + we probably want some kind of voting/counting for learning IP addresses
132 (maybe including IP addresses in ads proportional to how often others
133 report them? we at least need some protection against >64k HELLOs!),
134 + provide a way to give the user a list of "learned" IP addresses and
135 a way to easily "veto" addresses off the list!
136 => If MiM attacker uses vetoed address, blacklist the specific IP for
137 the presumed neighbour!
138 - implement gnunet-transport (transport configurator / tester)
139 - UPnP-based IP detection
140 (Note: build library always, build service when libxml2/etc. are available)
142 - Remove KBlocks in gnunet-unindex (see discussion with Kenneth Almquist on gnunet-devs in 9/2009)
143 - Allow checking of presence of search results and/or content via command-line tools
144 (add options to gnunet-search / gnunet-download to limit search to local peer)
146 - expire 'ancient' HELLOs (those without valid addresses AND that
147 we have not 'used' (for their public keys) in a while; need a way
148 to track actual 'use')
149 - make sue we also trigger notifications whenever HELLOs expire
156 - should use hash map to look up sessions
158 - should use BIO instead of mmap
160 - need to periodically probe latency/transport cost changes & possibly switch transport
161 - should use hash map to look up Neighbours (service AND plugins!)
163 - 'server' uses 'GNUNET_PEERINFO_iterate', should probably switch to notification API
164 (for more instant / up-to-date hostlists at lower cost)
166 - check for duplicates on insertion (currently, same content is frequently
167 stored again [seen with KBLOCKS and SBLOCKS]!)
169 - merge multiple HELLOs of the same peer in the transmission queue
170 (theoretically reduces overhead; bounds message queue size)
171 - merge multiple iteration requests over "all" peers in the queue
172 (theoretically reduces overhead; bounds messgae queue size)
176 - repeatedly resolve hostname and look up interfaces to determine our own IP
177 - [./transport/plugin_transport_tcp.c:391]: (style) struct or union member 'Plugin::address_update_task' is never used (related to issue above)
179 - [./transport/gnunet-service-transport.c:173]: (style) struct or union member 'TransportPlugin::rebuild' is never used (related to TCP not refreshing external addresses?)
181 - add stats (# bytes available, # bytes used, # PUTs, # GETs, # GETs satisfied)
183 - support inline data in directories for recursive file downloads (fs_download)