diff options
author | Andrea Shepard <andrea@persephoneslair.org> | 2012-08-01 04:18:42 -0700 |
---|---|---|
committer | Andrea Shepard <andrea@torproject.org> | 2012-10-08 03:04:00 -0700 |
commit | 15303c32ec9d84aff8de5ed9df28e779c36c6e5c (patch) | |
tree | 2e56c756d7e0b062efdfb5eb8bedb5fd4ecf6459 /src/or/channel.h | |
parent | 7f952da55334d3a3693d1c6e8531fd96730265db (diff) | |
download | tor-15303c32ec9d84aff8de5ed9df28e779c36c6e5c.tar.gz tor-15303c32ec9d84aff8de5ed9df28e779c36c6e5c.zip |
Initial channeltls.c/channeltls.h for bug 6465
Diffstat (limited to 'src/or/channel.h')
-rw-r--r-- | src/or/channel.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/or/channel.h b/src/or/channel.h index 18d9a81209..242a078532 100644 --- a/src/or/channel.h +++ b/src/or/channel.h @@ -38,6 +38,11 @@ struct channel_s { */ unsigned int is_listener:1; + /** Unique ID for measuring direct network status requests;vtunneled ones + * come over a circuit_t, which has a dirreq_id field as well, but is a + * distinct namespace. */ + uint64_t dirreq_id; + /** Why did we close? */ enum { |