]> git.tdb.fi Git - libs/net.git/blobdiff - source/socket.h
Hide platform details of Socket behind pimpl
[libs/net.git] / source / socket.h
index 6eb29066e03d078a469f897c79c99f35a19ebcbe..861012b8cc50c0bb2114440f0de2439fcacaa744 100644 (file)
@@ -5,11 +5,15 @@
 #include <msp/io/handle.h>
 #include "constants.h"
 #include "sockaddr.h"
-#include "types.h"
 
 namespace Msp {
 namespace Net {
 
+#ifdef WIN32
+typedef int socklen_t;
+#endif
+
+
 class bad_socket_state: public std::logic_error
 {
 public:
@@ -21,13 +25,14 @@ public:
 class Socket: public IO::EventObject
 {
 protected:
-       SocketHandle handle;
-       IO::Handle event;
+       struct Private;
+
+       Private *priv;
        bool connected;
        SockAddr *local_addr;
        SockAddr *peer_addr;
 
-       Socket(SocketHandle, const SockAddr &);
+       Socket(const Private &, const SockAddr &);
        Socket(Family, int, int);
 public:
        ~Socket();