inet.h 1015 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * inet.h - Substitute Linux header for systems without one;
  11. *
  12. * Emulate POSIX arpa/inet.h; specifically, declare network data
  13. * conversion functions htons(), ntohs(), htonl() and ntohl();
  14. *
  15. * Contributor(s):
  16. * Charles Maier <charles.maier@atheros.com>
  17. *
  18. *--------------------------------------------------------------------*/
  19. #ifndef INET_HEADER
  20. #define INET_HEADER
  21. /*====================================================================*
  22. *
  23. *--------------------------------------------------------------------*/
  24. #include <winsock2.h>
  25. /*====================================================================*
  26. *
  27. *--------------------------------------------------------------------*/
  28. #endif