ceca478180
git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/branches/branch-1.6.x@475 119443c7-1b9e-41f8-b6fc-b9c35fce742c
24 lines
273 B
C
24 lines
273 B
C
|
|
|
|
#ifndef UPNPINET_H
|
|
#define UPNPINET_H
|
|
|
|
|
|
/*!
|
|
* \file
|
|
*
|
|
* \brief Provides a platform independent way to include TCP/IP types and functions.
|
|
*/
|
|
|
|
|
|
#ifdef WIN32
|
|
#include <winsock2.h>
|
|
#include <Ws2tcpip.h>
|
|
#else
|
|
#include <netinet/in.h>
|
|
#endif
|
|
|
|
|
|
#endif /* UPNPINET_H */
|
|
|