diff options
author | Roger Dingledine <arma@torproject.org> | 2007-06-10 00:30:14 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2007-06-10 00:30:14 +0000 |
commit | 1ae7708ff862e43186dfe04a0ee43ea33ca3e56f (patch) | |
tree | 9e7580d8545c56a07dbf2fe1d983c944b5fe1be9 /src/or/circuitbuild.c | |
parent | a97c3b8c2da5d1f1e0ac793e7ad79b8288a87bc3 (diff) | |
download | tor-1ae7708ff862e43186dfe04a0ee43ea33ca3e56f.tar.gz tor-1ae7708ff862e43186dfe04a0ee43ea33ca3e56f.zip |
discard the "bridge list" stubs that i hope i never need.
svn:r10547
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r-- | src/or/circuitbuild.c | 29 |
1 files changed, 1 insertions, 28 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 896c0903e7..86925772f4 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -1816,7 +1816,7 @@ build_state_get_exit_nickname(cpath_build_state_t *state) } /** Check whether the entry guard <b>e</b> is usable, given the directory - * authorities' opinion about the rouer (stored in <b>ri</b>) and the user's + * authorities' opinion about the router (stored in <b>ri</b>) and the user's * configuration (in <b>options</b>). Set <b>e</b>->bad_since * accordingly. Return true iff the entry guard's status changes. */ static int @@ -2622,30 +2622,3 @@ getinfo_helper_entry_guards(control_connection_t *conn, return 0; } -typedef struct { - uint32_t addr; - uint16_t port; - char identity[DIGEST_LEN]; -} bridge_info_t; - -#if 0 -/** A list of known bridges. */ -static smartlist_t *bridge_list = NULL; -/** A value of 1 means that the bridge_list list has changed - * and those changes need to be flushed to disk. */ -static int bridge_list_dirty = 0; -#endif - -void -clear_bridge_list(void) -{ -} - -void -bridge_add_from_config(uint32_t addr, uint16_t port, char *digest) -{ - (void)addr; - (void)port; - (void)digest; -} - |