diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-03-09 22:01:17 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-03-09 22:01:17 +0000 |
commit | 2da54de9682716729154872ffc7946fbca1d6391 (patch) | |
tree | 8630c271e2420ebf15eb3e2b9dc81c080adef846 /src/or/circuit.c | |
parent | 30969421d3f6389fa985ae997c3a0969b3bfaf29 (diff) | |
download | tor-2da54de9682716729154872ffc7946fbca1d6391.tar.gz tor-2da54de9682716729154872ffc7946fbca1d6391.zip |
Make tor build on windows again. More work still needed
svn:r1247
Diffstat (limited to 'src/or/circuit.c')
-rw-r--r-- | src/or/circuit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/circuit.c b/src/or/circuit.c index 3955505179..e0e7aa607c 100644 --- a/src/or/circuit.c +++ b/src/or/circuit.c @@ -6,7 +6,7 @@ extern or_options_t options; /* command-line and config-file options */ -static int relay_crypt(circuit_t *circ, cell_t *cell, char cell_direction, +static int relay_crypt(circuit_t *circ, cell_t *cell, int cell_direction, crypt_path_t **layer_hint, char *recognized); static connection_t *relay_lookup_conn(circuit_t *circ, cell_t *cell, int cell_direction); static void circuit_free_cpath_node(crypt_path_t *victim); @@ -488,7 +488,7 @@ int circuit_receive_relay_cell(cell_t *cell, circuit_t *circ, } /* wrap this into receive_relay_cell one day */ -static int relay_crypt(circuit_t *circ, cell_t *cell, char cell_direction, +static int relay_crypt(circuit_t *circ, cell_t *cell, int cell_direction, crypt_path_t **layer_hint, char *recognized) { crypt_path_t *thishop; relay_header_t rh; |