aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-12-18 08:24:22 +0000
committerRoger Dingledine <arma@torproject.org>2006-12-18 08:24:22 +0000
commitad5ce3c7edc6e43bd269660506c84e20b7da5e9e (patch)
tree5dff360a92c09da8ba0257b56dc1da387d349d33
parent973baa1673192780e453f943c84aeeb7612d9108 (diff)
downloadtor-ad5ce3c7edc6e43bd269660506c84e20b7da5e9e.tar
tor-ad5ce3c7edc6e43bd269660506c84e20b7da5e9e.tar.gz
fix whitespace; add a todo item
svn:r9148
-rw-r--r--doc/TODO3
-rw-r--r--src/or/circuituse.c5
2 files changed, 6 insertions, 2 deletions
diff --git a/doc/TODO b/doc/TODO
index b7bcf5709..1145e47a4 100644
--- a/doc/TODO
+++ b/doc/TODO
@@ -299,6 +299,9 @@ R - "bandwidth classes", for incoming vs initiated-here conns,
- (Can we suppress cnames? Should we?)
Minor items for 0.1.2.x as time permits:
+R - add d64 and fp64 along-side d and fp so people can paste status
+ entries into a url. since + is a valid base64 char, only allow one
+ at a time. spec and then do.
D don't do dns hijacking tests if we're reject *:* exit policy?
(deferred until 0.1.1.x is less common)
o Some way for the authorities to set BadExit for some nodes manually.
diff --git a/src/or/circuituse.c b/src/or/circuituse.c
index adbf17e84..8168713ec 100644
--- a/src/or/circuituse.c
+++ b/src/or/circuituse.c
@@ -778,8 +778,9 @@ static int did_circs_fail_last_period = 0;
/** Launch a new circuit; see circuit_launch_by_extend_info() for
* details on arguments. */
origin_circuit_t *
-circuit_launch_by_router(uint8_t purpose, int onehop_tunnel, routerinfo_t *exit,
- int need_uptime, int need_capacity, int internal)
+circuit_launch_by_router(uint8_t purpose, int onehop_tunnel,
+ routerinfo_t *exit, int need_uptime,
+ int need_capacity, int internal)
{
origin_circuit_t *circ;
extend_info_t *info = NULL;