123456789101112131415161718192021222324252627282930313233 |
- /*====================================================================*
- *
- * Copyright (c) 2013 Qualcomm Atheros, Inc.
- *
- * All rights reserved.
- *
- *====================================================================*/
- /*====================================================================*
- *
- * socket.h - substitute sys/socket.h for systems without one;
- *
- * include Microsoft equivalent definitions and declarations;
- *
- *--------------------------------------------------------------------*/
- #ifndef SOCKET_HEADER
- #define SOCKET_HEADER
- /*====================================================================*
- * system header files;
- *--------------------------------------------------------------------*/
- #if defined (WIN32)
- #include <winsock2.h>
- #endif
- /*====================================================================*
- * end;
- *--------------------------------------------------------------------*/
- #endif
|