aboutsummaryrefslogtreecommitdiff
path: root/src/or/rendmid.h
diff options
context:
space:
mode:
authorSebastian Hahn <sebastian@torproject.org>2010-07-23 22:03:33 +0200
committerSebastian Hahn <sebastian@torproject.org>2010-07-27 10:00:45 +0200
commit52e6e915fbc5f019a6aec3afa3c88a415777d830 (patch)
tree9df0cbe305ca7f94c005513da9ae6e4256fc24a2 /src/or/rendmid.h
parentb0cd4551abb1105542b366e6cd23cfa2fb1003ce (diff)
downloadtor-52e6e915fbc5f019a6aec3afa3c88a415777d830.tar.gz
tor-52e6e915fbc5f019a6aec3afa3c88a415777d830.zip
Create rendmid.h
Diffstat (limited to 'src/or/rendmid.h')
-rw-r--r--src/or/rendmid.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/or/rendmid.h b/src/or/rendmid.h
new file mode 100644
index 0000000000..92df878fe5
--- /dev/null
+++ b/src/or/rendmid.h
@@ -0,0 +1,25 @@
+/* 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 geoip.h
+ * \brief Header file for geoip functions
+ **/
+
+#ifndef _TOR_GEOIP_H
+#define _TOR_GEOIP_H
+
+int rend_mid_establish_intro(or_circuit_t *circ, const char *request,
+ size_t request_len);
+int rend_mid_introduce(or_circuit_t *circ, const char *request,
+ size_t request_len);
+int rend_mid_establish_rendezvous(or_circuit_t *circ, const char *request,
+ size_t request_len);
+int rend_mid_rendezvous(or_circuit_t *circ, const char *request,
+ size_t request_len);
+
+#endif
+