]> git.tdb.fi Git - libs/net.git/blobdiff - source/inet.h
Hide platform specific parts of socket addresses
[libs/net.git] / source / inet.h
index 75735a7f36e1cf3e536dadf0b6d4915e26cb1fcd..94436f9c877873aceaa1b3a21aa822ff4f779b29 100644 (file)
@@ -1,11 +1,6 @@
 #ifndef MSP_NET_INET_H_
 #define MSP_NET_INET_H_
 
-#ifdef WIN32
-#include <winsock2.h>
-#else
-#include <netinet/in.h>
-#endif
 #include "sockaddr.h"
 
 namespace Msp {
@@ -17,26 +12,19 @@ Address class for IPv4 sockets.
 class InetAddr: public SockAddr
 {
 private:
-#ifdef WIN32
-       typedef u_long in_addr_t;
-       typedef u_short in_port_t;
-#endif
-
-       in_addr_t addr;
-       in_port_t port;
+       unsigned char addr[4];
+       unsigned port;
 
 public:
        InetAddr();
-       InetAddr(const sockaddr_in &);
-       InetAddr(in_addr_t, in_port_t);
+       InetAddr(const SysAddr &);
 
        virtual InetAddr *copy() const { return new InetAddr(*this); }
 
+       virtual SysAddr to_sys() const;
+
        Family get_family() const { return INET; }
-       in_addr_t get_addr() const { return ntohl(addr); }
-       in_port_t get_port() const { return ntohs(port); }
        std::string str() const;
-       virtual unsigned fill_sockaddr(sockaddr &) const;
 };
 
 } // namespace Net