httpap.h 539 B

123456789101112131415161718192021222324252627282930313233
  1. /**
  2. * http.h
  3. * HTTP Application Proxy for Onion Routing
  4. *
  5. * Matej Pfajfar <mp292@cam.ac.uk>
  6. */
  7. /*
  8. * Changes :
  9. * $Log$
  10. * Revision 1.1 2002/06/26 22:45:50 arma
  11. * Initial revision
  12. *
  13. * Revision 1.1 2002/03/11 00:21:53 mp292
  14. * Coding completed. Pending testing.
  15. *
  16. */
  17. #ifndef __HTTPAP_H
  18. #define __HTTPAP_H
  19. /* default listening port */
  20. #define HTTPAP_LISTEN_PORT 8080
  21. /* default SMTP port */
  22. #define HTTPAP_DEFAULT_HTTP_PORT 80
  23. /* default connection timeout */
  24. #define HTTPAP_DEFAULT_CONN_TIMEOUT 120; /* 120s */
  25. #endif