diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-11-02 03:02:17 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-11-02 03:02:17 +0000 |
commit | ad4dc7448257c229860206b078e02778bcb1b408 (patch) | |
tree | 823243e7bc13876a466176db862028402dd4526b /src/or/or.h | |
parent | 85c79ffbc7b965355c3b51cc81000d517089e74e (diff) | |
download | tor-ad4dc7448257c229860206b078e02778bcb1b408.tar tor-ad4dc7448257c229860206b078e02778bcb1b408.tar.gz |
Use a stricter set of warnings; make them all pass.
svn:r2645
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/or/or.h b/src/or/or.h index d5c07b894..f17ce47f8 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1038,13 +1038,6 @@ circuit_t *circuit_launch_by_identity(uint8_t purpose, const char *exit_digest); void circuit_reset_failure_count(int timeout); int connection_ap_handshake_attach_circuit(connection_t *conn); -int circuit_init_cpath_crypto(crypt_path_t *cpath, char *key_data,int reverse); -int circuit_finish_handshake(circuit_t *circ, char *reply); -int circuit_truncated(circuit_t *circ, crypt_path_t *layer); - -void assert_cpath_layer_ok(const crypt_path_t *c); -void assert_circuit_ok(const circuit_t *c); - /********************************* command.c ***************************/ void command_process_cell(cell_t *cell, connection_t *conn); @@ -1271,6 +1264,8 @@ int proxy_mode(void); void handle_signals(int is_parent); void tor_cleanup(void); +int tor_main(int argc, char *argv[]); + /********************************* onion.c ***************************/ int onion_pending_add(circuit_t *circ); |