/**
 * 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