diff options
author | Robert Ransom <rransom.8774@gmail.com> | 2011-06-25 13:46:20 -0700 |
---|---|---|
committer | Robert Ransom <rransom.8774@gmail.com> | 2011-11-24 06:55:06 -0800 |
commit | 88e0026d2f0260bb5e3ce88bf2cdead6b521b6b3 (patch) | |
tree | d6e52093b49660e502bc2f17292a79848b3104bc /src/or/or.h | |
parent | 296b8d0b10cc8e5d42c88284ed1b37b510f4a5bc (diff) | |
download | tor-88e0026d2f0260bb5e3ce88bf2cdead6b521b6b3.tar.gz tor-88e0026d2f0260bb5e3ce88bf2cdead6b521b6b3.zip |
Send CIRC2 event when a circuit is cannibalized
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/or.h b/src/or/or.h index 85d812a942..0ba52af9d5 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -3755,6 +3755,7 @@ typedef enum circuit_status_event_t { * The various types are defined in control-spec.txt . */ typedef enum circuit_status_2_event_t { CIRC2_EVENT_PURPOSE_CHANGED = 0, + CIRC2_EVENT_CANNIBALIZED = 1, } circuit_status_2_event_t; /** Used to indicate the type of a stream event passed to the controller. |