Merge pull request #1502 from madrang/SafeHandle.CloseTestDispose
[mono.git] / mono / utils / networking-windows.c
1 /*
2  * networking-windows.c: Windows-specific networking implementations
3  *
4  * Author:
5  *      Alexander Köplinger (alex.koeplinger@outlook.com)
6  */
7
8 #include <mono/utils/networking.h>
9
10 #if defined(HOST_WIN32)
11
12 void *
13 mono_get_local_interfaces (int family, int *interface_count)
14 {
15         *interface_count = 0;
16         return NULL;
17 }
18
19 #endif /* defined(HOST_WIN32) */