123456789101112131415161718192021222324252627282930313233343536 |
- /*====================================================================*
- *
- * Copyright (c) 2013 Qualcomm Atheros, Inc.
- *
- * All rights reserved.
- *
- *====================================================================*/
- /*====================================================================*
- *
- * inet.h - Substitute Linux header for systems without one;
- *
- * Emulate POSIX arpa/inet.h; specifically, declare network data
- * conversion functions htons(), ntohs(), htonl() and ntohl();
- *
- * Contributor(s):
- * Charles Maier <charles.maier@atheros.com>
- *
- *--------------------------------------------------------------------*/
- #ifndef INET_HEADER
- #define INET_HEADER
-
- /*====================================================================*
- *
- *--------------------------------------------------------------------*/
- #include <winsock2.h>
-
- /*====================================================================*
- *
- *--------------------------------------------------------------------*/
- #endif
-
|