diff options
author | Roger Dingledine <arma@torproject.org> | 2007-10-11 22:19:18 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2007-10-11 22:19:18 +0000 |
commit | 5c4a00e7962ab9f84d7d5cb5d7b07a2eae058031 (patch) | |
tree | 9fed710c640f8fe8ec9472008e3e5ab3a9892fee /src/or/or.h | |
parent | 3d9bf8c912e2af37f1ea3ab8e4a40767a562a72a (diff) | |
download | tor-5c4a00e7962ab9f84d7d5cb5d7b07a2eae058031.tar tor-5c4a00e7962ab9f84d7d5cb5d7b07a2eae058031.tar.gz |
minor cleanups
svn:r11890
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/or.h b/src/or/or.h index cfa969a0a..ed5e6ec37 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -781,8 +781,8 @@ typedef struct connection_t { /** True iff we're currently able to read on the linked conn, and our * read_event should be made active with libevent. */ unsigned int active_on_link:1; - /** True iff we've called connection_close_immediate on this linked - * connection */ + /** True iff we've called connection_close_immediate() on this linked + * connection. */ unsigned int linked_conn_is_closed:1; int s; /**< Our socket; -1 if this connection is closed, or has no |