diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-04-01 04:07:09 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-04-01 04:07:09 +0000 |
commit | 7993382ba1796130f4dd02ec65267e9a5cced611 (patch) | |
tree | dacc574e2c331bbebdea4b6e22ece1247a67739b /src/or/rendmid.c | |
parent | cc3c4245cb80cb7bb98be4868f053fb9421176d3 (diff) | |
download | tor-7993382ba1796130f4dd02ec65267e9a5cced611.tar.gz tor-7993382ba1796130f4dd02ec65267e9a5cced611.zip |
Add some hooks to handle rendezvous-related cells at ORs
svn:r1429
Diffstat (limited to 'src/or/rendmid.c')
-rw-r--r-- | src/or/rendmid.c | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/or/rendmid.c b/src/or/rendmid.c new file mode 100644 index 0000000000..fd151916ae --- /dev/null +++ b/src/or/rendmid.c @@ -0,0 +1,37 @@ +/* Copyright 2004 Roger Dingledine */ +/* See LICENSE for licensing information */ +/* $Id$ */ + +#include "or.h" + +int +rend_mid_establish_intro(circuit_t *circ, char *request, int request_len) +{ + return 0; +} + +int +rend_mid_introduce(circuit_t *circ, char *request, int request_len) +{ + return 0; +} + +int +rend_mid_establish_rendezvous(circuit_t *circ, char *request, int request_len) +{ + return 0; +} + +int +rend_mid_rendezvous(circuit_t *circ, char *request, int request_len) +{ + return 0; +} + +/* + Local Variables: + mode:c + indent-tabs-mode:nil + c-basic-offset:2 + End: +*/ |