diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-03-15 10:45:48 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-06-13 10:14:00 -0400 |
commit | 801eea03ad71dafd31cc6bfa06fa5e421aa95cd6 (patch) | |
tree | 75611ccea466279beef1744067ab902a4a7a1875 /src/or/circuitlist.h | |
parent | 967503c12c46f1c75209622ebddd15242e8af79a (diff) | |
download | tor-801eea03ad71dafd31cc6bfa06fa5e421aa95cd6.tar.gz tor-801eea03ad71dafd31cc6bfa06fa5e421aa95cd6.zip |
Code to track on a circuit whether it has a "pending" delete cell
This will be used in a fix for bug7912.
Diffstat (limited to 'src/or/circuitlist.h')
-rw-r--r-- | src/or/circuitlist.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/circuitlist.h b/src/or/circuitlist.h index 434d2a8699..94887d5faf 100644 --- a/src/or/circuitlist.h +++ b/src/or/circuitlist.h @@ -64,5 +64,8 @@ void assert_cpath_layer_ok(const crypt_path_t *cp); void assert_circuit_ok(const circuit_t *c); void circuit_free_all(void); +void channel_note_destroy_pending(channel_t *chan, circid_t id); +void channel_note_destroy_not_pending(channel_t *chan, circid_t id); + #endif |