summaryrefslogtreecommitdiffstats
path: root/lib/libUPnP/Neptune/Source/System/Posix/NptPosixNetwork.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lib/libUPnP/Neptune/Source/System/Posix/NptPosixNetwork.cpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/lib/libUPnP/Neptune/Source/System/Posix/NptPosixNetwork.cpp b/lib/libUPnP/Neptune/Source/System/Posix/NptPosixNetwork.cpp
new file mode 100644
index 0000000..cf0b29f
--- /dev/null
+++ b/lib/libUPnP/Neptune/Source/System/Posix/NptPosixNetwork.cpp
@@ -0,0 +1,35 @@
+/*****************************************************************
+|
+| Neptune - Network :: POSIX Implementation
+|
+| (c) 2001-2005 Gilles Boccon-Gibod
+| Author: Gilles Boccon-Gibod (bok@bok.net)
+|
+ ****************************************************************/
+
+/*----------------------------------------------------------------------
+| includes
++---------------------------------------------------------------------*/
+#include "NptConfig.h"
+
+#if defined(NPT_CONFIG_HAVE_NETCONFIG_H)
+#include <netconfig.h>
+
+#include "NptTypes.h"
+#include "NptStreams.h"
+#include "NptThreads.h"
+#include "NptNetwork.h"
+#include "NptUtils.h"
+#include "NptConstants.h"
+
+/*----------------------------------------------------------------------
+| NPT_NetworkInterface::GetNetworkInterfaces
++---------------------------------------------------------------------*/
+NPT_Result
+NPT_NetworkInterface::GetNetworkInterfaces(NPT_List<NPT_NetworkInterface*>& interfaces)
+{
+ interfaces.Clear();
+ return NPT_SUCCESS;
+}
+
+#endif