diff options
author | Linus Nordberg <linus@nordberg.se> | 2011-11-24 18:39:27 +0100 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-11-30 11:55:45 -0500 |
commit | 7b02d1a73ea4b7b3d780116055bbedaa43d67809 (patch) | |
tree | 99189efd63eb82d8370380fef75ef4d64c32d594 | |
parent | f786307ab7f601a3cb41c46df0a09758671a0bcf (diff) | |
download | tor-7b02d1a73ea4b7b3d780116055bbedaa43d67809.tar.gz tor-7b02d1a73ea4b7b3d780116055bbedaa43d67809.zip |
Clarify function documentation.
-rw-r--r-- | src/or/connection_or.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/connection_or.c b/src/or/connection_or.c index e178f3a8c0..6990952e94 100644 --- a/src/or/connection_or.c +++ b/src/or/connection_or.c @@ -630,7 +630,9 @@ connection_or_update_token_buckets(smartlist_t *conns, /** If we don't necessarily know the router we're connecting to, but we * have an addr/port/id_digest, then fill in as much as we can. Start - * by checking to see if this describes a router we know. */ + * by checking to see if this describes a router we know. + * <b>started_here</b> is 1 if we are the initiator of <b>conn</b> and + * 0 if it's an incoming connection. */ void connection_or_init_conn_from_address(or_connection_t *conn, const tor_addr_t *addr, uint16_t port, |