aboutsummaryrefslogtreecommitdiff
path: root/src/or
diff options
context:
space:
mode:
Diffstat (limited to 'src/or')
-rw-r--r--src/or/circuitbuild.c27
-rw-r--r--src/or/or.h3
-rw-r--r--src/or/routerlist.c2
3 files changed, 1 insertions, 31 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c
index 3216433a8..dcb70a245 100644
--- a/src/or/circuitbuild.c
+++ b/src/or/circuitbuild.c
@@ -1761,33 +1761,6 @@ extend_info_from_router(routerinfo_t *r)
r->onion_pkey, r->addr, r->or_port);
}
-#if 0
-/** What router purpose is <b>digest</b>?
- * It's a general purpose router unless it's on our bridges list.
- */
-static uint8_t
-get_router_purpose_from_digest(char *digest)
-{
- if (digest_is_a_bridge(digest))
- return ROUTER_PURPOSE_BRIDGE;
- return ROUTER_PURPOSE_GENERAL;
-}
-#endif
-
-#if 0
-/** Allocate and return a new extend_info_t that can be used to build a
- * circuit to or through the router <b>r</b>. */
-extend_info_t *
-extend_info_from_routerstatus(routerstatus_t *s)
-{
- tor_assert(s);
- /* routerstatus doesn't know onion_key; leave it NULL */
- return extend_info_alloc(s->nickname, s->identity_digest,
- NULL, s->addr, s->or_port);
-// get_router_purpose_from_digest(s->identity_digest));
-}
-#endif
-
/** Release storage held by an extend_info_t struct. */
void
extend_info_free(extend_info_t *info)
diff --git a/src/or/or.h b/src/or/or.h
index 222133add..fdfe8b33e 100644
--- a/src/or/or.h
+++ b/src/or/or.h
@@ -2836,9 +2836,6 @@ int connection_or_process_inbuf(or_connection_t *conn);
int connection_or_flushed_some(or_connection_t *conn);
int connection_or_finished_flushing(or_connection_t *conn);
int connection_or_finished_connecting(or_connection_t *conn);
-#if 0
-int connection_or_finish_or_handshake(or_connection_t *conn);
-#endif
or_connection_t *connection_or_connect(uint32_t addr, uint16_t port,
const char *id_digest);
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index 9d38d0127..46a372c1e 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -837,7 +837,7 @@ router_pick_directory_server(authority_type_t type, int flags)
if (choice)
return choice;
- /* XXXX020 what's the point of *reloading* and trying again?? -NM */
+ /* XXXX020 arma: what's the point of *reloading* and trying again?? -NM */
log_info(LD_DIR,"Still no %s router entries. Reloading and trying again.",
(flags & PDS_IGNORE_FASCISTFIREWALL) ? "known" : "reachable");
if (router_reload_router_list()) {