diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-07-23 15:58:30 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-07-23 15:58:30 +0000 |
commit | 2748afe60961596791bceb842dce2385c5b4db7e (patch) | |
tree | e3538b4e13a1a62d607faba062cc21f158017f56 /src/or/connection_or.c | |
parent | 15b2b8bd69ff30a85c2364bcc528090b36aa9286 (diff) | |
download | tor-2748afe60961596791bceb842dce2385c5b4db7e.tar.gz tor-2748afe60961596791bceb842dce2385c5b4db7e.zip |
r17322@aud-055: nickm | 2008-07-23 16:50:50 +0200
Make circid_t and streamid_t get used instead of uint16_t; it is possible we will soon want to make circid_t change to uint32_t.
svn:r16155
Diffstat (limited to 'src/or/connection_or.c')
-rw-r--r-- | src/or/connection_or.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/connection_or.c b/src/or/connection_or.c index b9bc5f40a5..0ed957eb66 100644 --- a/src/or/connection_or.c +++ b/src/or/connection_or.c @@ -1016,7 +1016,7 @@ connection_or_process_cells_from_inbuf(or_connection_t *conn) * Return 0. */ int -connection_or_send_destroy(uint16_t circ_id, or_connection_t *conn, int reason) +connection_or_send_destroy(circid_t circ_id, or_connection_t *conn, int reason) { cell_t cell; |