2008-06-06 21:32:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef UPNPINET_H
|
|
|
|
#define UPNPINET_H
|
|
|
|
|
|
|
|
|
2008-06-09 16:24:38 +00:00
|
|
|
/*!
|
|
|
|
* \file
|
|
|
|
*
|
|
|
|
* \brief Proides a platform independent way to include TCP/IP types and functions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2008-06-06 21:32:51 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
#include <Ws2tcpip.h>
|
|
|
|
#else
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* UPNPINET_H */
|
|
|
|
|