diff options
author | Robert Ransom <rransom.8774@gmail.com> | 2011-10-23 14:58:00 -0700 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2011-10-26 23:21:11 +0200 |
commit | c05bb53508f5fe3e570a285e6c9ead452ded0e43 (patch) | |
tree | 76eef9be5a2025f71988b27e2464ac2ec77e9a94 /src/or/or.h | |
parent | af12c39d6de5bbcd24915db3c4cc9404f102ac02 (diff) | |
download | tor-c05bb53508f5fe3e570a285e6c9ead452ded0e43.tar.gz tor-c05bb53508f5fe3e570a285e6c9ead452ded0e43.zip |
Mark which OR connections are outgoing
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/or.h b/src/or/or.h index 72e4c639ad..edbb73cca5 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1035,6 +1035,8 @@ typedef struct or_connection_t { * is a client. Connections with this flag set should never be used * to satisfy an EXTEND request. */ unsigned int is_connection_with_client:1; + /** True iff this is an outgoing connection. */ + unsigned int is_outgoing:1; uint8_t link_proto; /**< What protocol version are we using? 0 for * "none negotiated yet." */ circid_t next_circ_id; /**< Which circ_id do we try to use next on |