aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-06-16 18:16:12 +0000
committerChristian Grothoff <christian@grothoff.org>2009-06-16 18:16:12 +0000
commitca419dc0d9db4c5ed3784a5c5d7b46040c5203ef (patch)
treeb46ce7d337c0aa647d89850ca5415d919302fce1
parente943ea50e768867674c4bdf05fb2b9b3e0c990ab (diff)
downloadgnunet-ca419dc0d9db4c5ed3784a5c5d7b46040c5203ef.tar.gz
gnunet-ca419dc0d9db4c5ed3784a5c5d7b46040c5203ef.zip
h
-rw-r--r--TODO6
-rw-r--r--src/util/io_handle.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/TODO b/TODO
index 029a3558c..f57bd0ad9 100644
--- a/TODO
+++ b/TODO
@@ -57,8 +57,8 @@ PHASE #2: (Goal: recover basic file-sharing functionality)
57 57
58Datastores: 58Datastores:
59* implement sqlite-based sqstore/datastore service 59* implement sqlite-based sqstore/datastore service
60 + implement library (talks to service)
61 + implement service (datastore + talks to plugin) 60 + implement service (datastore + talks to plugin)
61 + implement library (talks to service)
62 + implement sqlite plugin (talks to DB) 62 + implement sqlite plugin (talks to DB)
63* implement sqlite-based dstore services 63* implement sqlite-based dstore services
64 + implement library (talks to service) 64 + implement library (talks to service)
@@ -69,8 +69,6 @@ Applications:
69* DHT, DV 69* DHT, DV
70* FS / fs-libs 70* FS / fs-libs
71 71
72Databases:
73* have ONE backend working
74 72
75 73
76PHASE #3: (Goal: ready for pre-release) [completion-goal: end of 2009] 74PHASE #3: (Goal: ready for pre-release) [completion-goal: end of 2009]
@@ -149,6 +147,8 @@ Minor TODO items:
149 - implement exponential back-off for service restarts 147 - implement exponential back-off for service restarts
150 - better tracking of which config changes actually need to cause process restarts by ARM. 148 - better tracking of which config changes actually need to cause process restarts by ARM.
151 - have way to specify dependencies between services (to manage ARM restarts better) 149 - have way to specify dependencies between services (to manage ARM restarts better)
150 - client-API is inefficient since it opens a TCP connection per service that is started
151 (instead of re-using connections).
152* PEERINFO: 152* PEERINFO:
153 - have gnunet-peerinfo print actual host addresses again 153 - have gnunet-peerinfo print actual host addresses again
154 - add option to gnunet-peerinfo to modify trust value 154 - add option to gnunet-peerinfo to modify trust value
diff --git a/src/util/io_handle.h b/src/util/io_handle.h
index cafbdf1ee..04e735748 100644
--- a/src/util/io_handle.h
+++ b/src/util/io_handle.h
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file util/io_handle.c 22 * @file util/io_handle.h
23 * @brief wrapper structure for file handles, sockets, ... 23 * @brief wrapper structure for file handles, sockets, ...
24 */ 24 */
25 25