aboutsummaryrefslogtreecommitdiff
path: root/src/udpsocket.cpp
diff options
context:
space:
mode:
authorDavid <david@xagasoft.com>2011-02-21 19:09:49 +0000
committerDavid <david@xagasoft.com>2011-02-21 19:09:49 +0000
commit66669b2b9d392f6ae8f2c2a6acf7752bc0b6bc7e (patch)
tree6c9b864606c486ffd8adb3b51cd39167788421bf /src/udpsocket.cpp
parentba64111dabe60f0cce109831cae11c37ab42b249 (diff)
downloadlibbu++-66669b2b9d392f6ae8f2c2a6acf7752bc0b6bc7e.tar.gz
libbu++-66669b2b9d392f6ae8f2c2a6acf7752bc0b6bc7e.tar.bz2
libbu++-66669b2b9d392f6ae8f2c2a6acf7752bc0b6bc7e.tar.xz
libbu++-66669b2b9d392f6ae8f2c2a6acf7752bc0b6bc7e.zip
david - udp not building on windows for now && fixed a windows tcpsocket thing
Diffstat (limited to 'src/udpsocket.cpp')
-rw-r--r--src/udpsocket.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/udpsocket.cpp b/src/udpsocket.cpp
index 91e04c1..b577302 100644
--- a/src/udpsocket.cpp
+++ b/src/udpsocket.cpp
@@ -5,6 +5,8 @@
5 * terms of the license contained in the file LICENSE. 5 * terms of the license contained in the file LICENSE.
6 */ 6 */
7 7
8#ifndef WIN32 //not on windows
9
8#include "bu/udpsocket.h" 10#include "bu/udpsocket.h"
9 11
10#include "bu/sio.h" 12#include "bu/sio.h"
@@ -238,3 +240,5 @@ Bu::String Bu::UdpSocket::getLocation() const
238 throw Bu::UnsupportedException(); 240 throw Bu::UnsupportedException();
239} 241}
240 242
243#endif
244