aboutsummaryrefslogtreecommitdiff
path: root/src/httpap/httpap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/httpap/httpap.h')
-rw-r--r--src/httpap/httpap.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/httpap/httpap.h b/src/httpap/httpap.h
new file mode 100644
index 000000000..d15516141
--- /dev/null
+++ b/src/httpap/httpap.h
@@ -0,0 +1,33 @@
+/**
+ * http.h
+ * HTTP Application Proxy for Onion Routing
+ *
+ * Matej Pfajfar <mp292@cam.ac.uk>
+ */
+
+/*
+ * Changes :
+ * $Log$
+ * Revision 1.1 2002/06/26 22:45:50 arma
+ * Initial revision
+ *
+ * Revision 1.1 2002/03/11 00:21:53 mp292
+ * Coding completed. Pending testing.
+ *
+ */
+
+#ifndef __HTTPAP_H
+
+#define __HTTPAP_H
+
+/* default listening port */
+#define HTTPAP_LISTEN_PORT 8080
+
+/* default SMTP port */
+#define HTTPAP_DEFAULT_HTTP_PORT 80
+
+/* default connection timeout */
+#define HTTPAP_DEFAULT_CONN_TIMEOUT 120; /* 120s */
+
+#endif
+