Parcourir la source

Create onion.h

Sebastian Hahn il y a 14 ans
Parent
commit
f6852fe031
9 fichiers modifiés avec 55 ajouts et 34 suppressions
  1. 1 0
      src/or/circuitbuild.c
  2. 1 0
      src/or/circuitlist.c
  3. 1 0
      src/or/command.c
  4. 1 0
      src/or/cpuworker.c
  5. 1 0
      src/or/main.c
  6. 1 0
      src/or/onion.c
  7. 48 0
      src/or/onion.h
  8. 0 34
      src/or/or.h
  9. 1 0
      src/test/test.c

+ 1 - 0
src/or/circuitbuild.c

@@ -23,6 +23,7 @@
 #include "directory.h"
 #include "main.h"
 #include "networkstatus.h"
+#include "onion.h"
 #include "router.h"
 #include "routerlist.h"
 #include "crypto.h"

+ 1 - 0
src/or/circuitlist.c

@@ -19,6 +19,7 @@
 #include "connection_or.h"
 #include "control.h"
 #include "networkstatus.h"
+#include "onion.h"
 #include "rendclient.h"
 #include "rendcommon.h"
 #include "routerlist.h"

+ 1 - 0
src/or/command.c

@@ -25,6 +25,7 @@
 #include "control.h"
 #include "cpuworker.h"
 #include "hibernate.h"
+#include "onion.h"
 #include "router.h"
 #include "routerlist.h"
 

+ 1 - 0
src/or/cpuworker.c

@@ -20,6 +20,7 @@
 #include "connection.h"
 #include "cpuworker.h"
 #include "main.h"
+#include "onion.h"
 #include "router.h"
 
 /** The maximum number of cpuworker processes we will keep around. */

+ 1 - 0
src/or/main.c

@@ -34,6 +34,7 @@
 #include "microdesc.h"
 #include "networkstatus.h"
 #include "ntmain.h"
+#include "onion.h"
 #include "rendclient.h"
 #include "rendcommon.h"
 #include "rendservice.h"

+ 1 - 0
src/or/onion.c

@@ -13,6 +13,7 @@
 #include "or.h"
 #include "circuitlist.h"
 #include "config.h"
+#include "onion.h"
 
 /** Type for a linked list of circuits that are waiting for a free CPU worker
  * to process a waiting onion handshake. */

+ 48 - 0
src/or/onion.h

@@ -0,0 +1,48 @@
+/* Copyright (c) 2001 Matej Pfajfar.
+ * Copyright (c) 2001-2004, Roger Dingledine.
+ * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
+ * Copyright (c) 2007-2010, The Tor Project, Inc. */
+/* See LICENSE for licensing information */
+
+/**
+ * \file onion.h
+ * \brief Header file for onion.c.
+ **/
+
+#ifndef _TOR_ONION_H
+#define _TOR_ONION_H
+
+int onion_pending_add(or_circuit_t *circ, char *onionskin);
+or_circuit_t *onion_next_task(char **onionskin_out);
+void onion_pending_remove(or_circuit_t *circ);
+
+int onion_skin_create(crypto_pk_env_t *router_key,
+                      crypto_dh_env_t **handshake_state_out,
+                      char *onion_skin_out);
+
+int onion_skin_server_handshake(const char *onion_skin,
+                                crypto_pk_env_t *private_key,
+                                crypto_pk_env_t *prev_private_key,
+                                char *handshake_reply_out,
+                                char *key_out,
+                                size_t key_out_len);
+
+int onion_skin_client_handshake(crypto_dh_env_t *handshake_state,
+                                const char *handshake_reply,
+                                char *key_out,
+                                size_t key_out_len);
+
+int fast_server_handshake(const char *key_in,
+                          char *handshake_reply_out,
+                          char *key_out,
+                          size_t key_out_len);
+
+int fast_client_handshake(const char *handshake_state,
+                          const char *handshake_reply_out,
+                          char *key_out,
+                          size_t key_out_len);
+
+void clear_pending_onions(void);
+
+#endif
+

+ 0 - 34
src/or/or.h

@@ -3293,40 +3293,6 @@ typedef enum version_status_t {
   VS_UNKNOWN, /**< We have no idea. */
 } version_status_t;
 
-/********************************* onion.c ***************************/
-
-int onion_pending_add(or_circuit_t *circ, char *onionskin);
-or_circuit_t *onion_next_task(char **onionskin_out);
-void onion_pending_remove(or_circuit_t *circ);
-
-int onion_skin_create(crypto_pk_env_t *router_key,
-                      crypto_dh_env_t **handshake_state_out,
-                      char *onion_skin_out);
-
-int onion_skin_server_handshake(const char *onion_skin,
-                                crypto_pk_env_t *private_key,
-                                crypto_pk_env_t *prev_private_key,
-                                char *handshake_reply_out,
-                                char *key_out,
-                                size_t key_out_len);
-
-int onion_skin_client_handshake(crypto_dh_env_t *handshake_state,
-                                const char *handshake_reply,
-                                char *key_out,
-                                size_t key_out_len);
-
-int fast_server_handshake(const char *key_in,
-                          char *handshake_reply_out,
-                          char *key_out,
-                          size_t key_out_len);
-
-int fast_client_handshake(const char *handshake_state,
-                          const char *handshake_reply_out,
-                          char *key_out,
-                          size_t key_out_len);
-
-void clear_pending_onions(void);
-
 /********************************* policies.c ************************/
 
 /* (length of "accept 255.255.255.255/255.255.255.255:65535-65535\n" plus a

+ 1 - 0
src/test/test.c

@@ -53,6 +53,7 @@ double fabs(double x);
 #include "torgzip.h"
 #include "mempool.h"
 #include "memarea.h"
+#include "onion.h"
 
 #ifdef USE_DMALLOC
 #include <dmalloc.h>