diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-11-06 21:33:53 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-11-06 21:33:53 -0500 |
commit | 8e8c0674c4729a6aa39ded658e800baa654fe289 (patch) | |
tree | 5c32d38030f3a1e87e10bcb18908c85015afd984 /src/or/channel.h | |
parent | 1c0e87f6d8c7a0abdadf1b5cd9082c10abc7f4e2 (diff) | |
download | tor-8e8c0674c4729a6aa39ded658e800baa654fe289.tar.gz tor-8e8c0674c4729a6aa39ded658e800baa654fe289.zip |
Implement proposal-214 rules for CircID checking.
Diffstat (limited to 'src/or/channel.h')
-rw-r--r-- | src/or/channel.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/channel.h b/src/or/channel.h index 3cfc8b183c..a21271ca1e 100644 --- a/src/or/channel.h +++ b/src/or/channel.h @@ -449,7 +449,8 @@ int channel_matches_extend_info(channel_t *chan, extend_info_t *extend_info); int channel_matches_target_addr_for_extend(channel_t *chan, const tor_addr_t *target); unsigned int channel_num_circuits(channel_t *chan); -void channel_set_circid_type(channel_t *chan, crypto_pk_t *identity_rcvd); +void channel_set_circid_type(channel_t *chan, crypto_pk_t *identity_rcvd, + int consider_identity); void channel_timestamp_client(channel_t *chan); const char * channel_listener_describe_transport(channel_listener_t *chan_l); |