blob: d155161411b0c7e7cefcd808b7551e21e5a604de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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
|