diff options
author | Robert Ransom <rransom.8774@gmail.com> | 2011-08-06 13:42:32 -0700 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-08-08 09:42:48 -0400 |
commit | cab3641638540834a0867f26eb5b432fd793fd5e (patch) | |
tree | bf0fa42ab38e0657f25baf23eb00485fa3a3b544 /src/or/or.h | |
parent | 52421e91014ee8c1d105bb07b336c95a64dc557f (diff) | |
download | tor-cab3641638540834a0867f26eb5b432fd793fd5e.tar tor-cab3641638540834a0867f26eb5b432fd793fd5e.tar.gz |
Fix handling of ISO_STREAM
Now we track *which* stream with ISO_STREAM set is associated to a
particular circuit, so that we won't think that stream is incompatible
with its circuit and launch another one a second later, and we use that
same field to mark circuits which have had an ISO_STREAM stream attached
to them, so that we won't ever put a second stream on that circuit.
Fixes bug 3695.
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/or.h b/src/or/or.h index eb271b5ee..9c5d354c7 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -2530,6 +2530,9 @@ typedef struct origin_circuit_t { socks_username_len and socks_password_len for their lengths. */ char *socks_username; char *socks_password; + /** Global identifier for the first stream attached here; used by + * ISO_STREAM. */ + uint64_t associated_isolated_stream_global_id; /**@}*/ } origin_circuit_t; |