X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fsocket.h;h=f97588415b1e5df052b1138a1e706f596810fc0b;hb=21c596567e3b6fd794ed6af73d304ce2bc70e58f;hp=6eb29066e03d078a469f897c79c99f35a19ebcbe;hpb=e2f4514a4530e0b5c4eb270bab970ab9391b5085;p=libs%2Fnet.git diff --git a/source/socket.h b/source/socket.h index 6eb2906..f975884 100644 --- a/source/socket.h +++ b/source/socket.h @@ -5,11 +5,15 @@ #include #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,38 +25,29 @@ public: class Socket: public IO::EventObject { protected: - SocketHandle handle; - IO::Handle event; - bool connected; + struct Private; + + Private *priv; SockAddr *local_addr; - SockAddr *peer_addr; - Socket(SocketHandle, const SockAddr &); + Socket(const Private &); Socket(Family, int, int); public: ~Socket(); - void set_block(bool); - const IO::Handle &get_event_handle(); + virtual void set_block(bool); + virtual const IO::Handle &get_event_handle(); - bool is_connected() const { return connected; } - /** Associates the socket with a local address. There must be no existing users of the address. */ void bind(const SockAddr &); - /** Connects to a remote address. Exact semantics depend on the socket - type. */ - virtual int connect(const SockAddr &) = 0; + const SockAddr &get_local_address() const; void set_timeout(const Time::TimeDelta &); - const SockAddr &get_local_address() const; - const SockAddr &get_peer_address() const; protected: int set_option(int, int, const void *, socklen_t); int get_option(int, int, void *, socklen_t *) const; - unsigned do_write(const char *, unsigned); - unsigned do_read(char *, unsigned); }; } // namespace Net