diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-12-06 01:53:29 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-01-03 11:29:47 -0500 |
commit | b2863739083125d332cf1166ae6b095df7d0f155 (patch) | |
tree | 44e6a25866048d143b1e739a46528823306ff9e7 /src/or/channeltls.c | |
parent | ecf88b16b8672c8b734d13d84910e97357c470a8 (diff) | |
download | tor-b2863739083125d332cf1166ae6b095df7d0f155.tar.gz tor-b2863739083125d332cf1166ae6b095df7d0f155.zip |
Enable the ntor handshake on the client side.
"works for me"
Diffstat (limited to 'src/or/channeltls.c')
-rw-r--r-- | src/or/channeltls.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/channeltls.c b/src/or/channeltls.c index ede245894e..f6069e0037 100644 --- a/src/or/channeltls.c +++ b/src/or/channeltls.c @@ -914,6 +914,8 @@ channel_tls_handle_cell(cell_t *cell, or_connection_t *conn) case CELL_RELAY: case CELL_RELAY_EARLY: case CELL_DESTROY: + case CELL_CREATE2: + case CELL_CREATED2: /* * These are all transport independent and we pass them up through the * channel_t mechanism. They are ultimately handled in command.c. |