in.h 1.0 KB

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