aboutsummaryrefslogtreecommitdiff
path: root/src/or/rendmid.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2010-07-29 21:54:46 -0400
committerNick Mathewson <nickm@torproject.org>2010-07-29 21:54:46 -0400
commit4727adf591c4f8df115a639f67882578314eea8b (patch)
treed466d87c8d8f5ca8a7c3c60a1f7828f5030f562c /src/or/rendmid.h
parenta7b12978cee02f1fbd38887350fa8de5c59040bd (diff)
parentda49a7267fee4e36cd1983158cbce7c1aa10e58a (diff)
downloadtor-4727adf591c4f8df115a639f67882578314eea8b.tar
tor-4727adf591c4f8df115a639f67882578314eea8b.tar.gz
Merge commit 'linus/headers'
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 000000000..4d08d4c8b
--- /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 rendmid.h
+ * \brief Header file for rendmid.c.
+ **/
+
+#ifndef _TOR_RENDMID_H
+#define _TOR_RENDMID_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
+