aboutsummaryrefslogtreecommitdiff
path: root/src/or/circuitlist.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2013-03-15 10:45:48 -0400
committerNick Mathewson <nickm@torproject.org>2013-06-13 10:14:00 -0400
commit801eea03ad71dafd31cc6bfa06fa5e421aa95cd6 (patch)
tree75611ccea466279beef1744067ab902a4a7a1875 /src/or/circuitlist.h
parent967503c12c46f1c75209622ebddd15242e8af79a (diff)
downloadtor-801eea03ad71dafd31cc6bfa06fa5e421aa95cd6.tar
tor-801eea03ad71dafd31cc6bfa06fa5e421aa95cd6.tar.gz
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.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/circuitlist.h b/src/or/circuitlist.h
index 434d2a869..94887d5fa 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