diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-10-28 18:29:29 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-10-28 18:29:29 +0000 |
commit | 665aa7659cef111ce47404ea9a67645535d8c84d (patch) | |
tree | 0f65b26dc099a1257bfeb28c43a47aa43e765dff /src/or | |
parent | abe8afbdc9f5ada027c68953f28bfdc3a1bc6e03 (diff) | |
download | tor-665aa7659cef111ce47404ea9a67645535d8c84d.tar tor-665aa7659cef111ce47404ea9a67645535d8c84d.tar.gz |
r16234@catbus: nickm | 2007-10-28 14:27:22 -0400
Clean up a couple of comments from r12244.
svn:r12253
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/or.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/or/or.h b/src/or/or.h index e151a678c..fbc7e9fae 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -910,10 +910,11 @@ typedef struct edge_connection_t { /** True iff this connection is for a dns request only. */ unsigned int is_dns_request : 1; - /** True iff this stream wants a one-hop circuit (e.g. for begin_dir). */ + /** True iff this stream must attach to a one-hop circuit (e.g. for + * begin_dir). */ int want_onehop:1; - /** True iff this stream should use a begin_dir connection (either via - * onehop or via a whole circuit). */ + /** True iff this stream should use a BEGIN_DIR relay command to establish + * itself rather than BEGIN (either via onehop or via a whole circuit). */ int use_begindir:1; /** If this is a DNSPort connection, this field holds the pending DNS |