diff options
Diffstat (limited to 'src/libjin/Net/Socket.h')
-rw-r--r-- | src/libjin/Net/Socket.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libjin/Net/Socket.h b/src/libjin/Net/Socket.h index 6d9e09b..5329974 100644 --- a/src/libjin/Net/Socket.h +++ b/src/libjin/Net/Socket.h @@ -33,7 +33,6 @@ namespace net Socket(SocketType type, unsigned int address, unsigned short port); Socket(SocketType type, const char* address, unsigned short port); ~Socket(); - void configureBlocking(bool bocking); Socket* accept(); int receive(char* buffer, int size); @@ -53,6 +52,7 @@ namespace net } handle; #endif SocketType type; + }; } // net |