aboutsummaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2017-09-29 15:27:08 -0700
committerGarrett D'Amore <garrett@damore.org>2017-09-29 20:00:36 -0700
commit869d0eeb20657cd6d2e87d8c4836b086c6be448d (patch)
tree4731bf410cf36fb3442861575807dbb83400a3b3 /src/CMakeLists.txt
parent82d17f6365a95a500c32ae3a4ad40ff6fb609f3e (diff)
downloadnng-869d0eeb20657cd6d2e87d8c4836b086c6be448d.tar.gz
nng-869d0eeb20657cd6d2e87d8c4836b086c6be448d.tar.bz2
nng-869d0eeb20657cd6d2e87d8c4836b086c6be448d.zip
Windows UDP support.
This implements the basic UDP functionality for Windows (required for ZeroTier for example). We have also introduced a UDP test suite to validate that this actually works. While here a few Windows compilation warnings / nits were fixed.
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r--src/CMakeLists.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 17b14d2e..ffcb2b7b 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -133,12 +133,14 @@ if (NNG_PLATFORM_WINDOWS)
platform/windows/win_debug.c
platform/windows/win_iocp.c
platform/windows/win_ipc.c
- platform/windows/win_net.c
platform/windows/win_pipe.c
platform/windows/win_rand.c
platform/windows/win_resolv.c
+ platform/windows/win_sockaddr.c
+ platform/windows/win_tcp.c
platform/windows/win_thread.c
- )
+ platform/windows/win_udp.c
+ )
endif()
if (NNG_ENABLE_ZEROTIER)