wac_network.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. ** JNetLib
  3. ** Copyright (C) 2000-2006 Nullsoft, Inc.
  4. ** Author: Justin Frankel
  5. ** File: jnetlib.h - JNL main include file (not really necessary).
  6. **
  7. ** For documentation, look at the following files:
  8. ** Generic network initialization: netinc.h
  9. ** DNS: asyncdns.h
  10. ** TCP connections: connection.h
  11. ** HTTP GET connections: wac_network_http_receiver.h
  12. ** TCP listen: wac_network_web_server_listen.h
  13. **
  14. ** license:
  15. **
  16. ** This software is provided 'as-is', without any express or implied
  17. ** warranty. In no event will the authors be held liable for any damages
  18. ** arising from the use of this software.
  19. **
  20. ** Permission is granted to anyone to use this software for any purpose,
  21. ** including commercial applications, and to alter it and redistribute it
  22. ** freely, subject to the following restrictions:
  23. **
  24. ** 1. The origin of this software must not be misrepresented; you must not
  25. ** claim that you wrote the original software. If you use this software
  26. ** in a product, an acknowledgment in the product documentation would be
  27. ** appreciated but is not required.
  28. ** 2. Altered source versions must be plainly marked as such, and must not be
  29. ** misrepresented as being the original software.
  30. ** 3. This notice may not be removed or altered from any source distribution.
  31. **
  32. */
  33. #ifndef NULLSOFT_WAC_NETWORK_H
  34. #define NULLSOFT_WAC_NETWORK_H
  35. #include "netinc.h"
  36. #include "util.h"
  37. #include <time.h>
  38. #include "wac_network_dns.h"
  39. #include "wac_network_connection.h"
  40. #include "wac_network_http_receiver.h"
  41. #include "wac_network_http_server.h"
  42. #include "wac_network_web_server_listen.h"
  43. #endif //!NULLSOFT_WAC_NETWORK_H