X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Finet.h;h=639e64cbb1eca5ec8c9fc2e0d5247c91600adf38;hb=21c596567e3b6fd794ed6af73d304ce2bc70e58f;hp=1092bc1a8372fbd6e473ebcb4b8007d1079efc52;hpb=f59eded7c3e162bbdfc6db424c9badc730017698;p=libs%2Fnet.git diff --git a/source/inet.h b/source/inet.h index 1092bc1..639e64c 100644 --- a/source/inet.h +++ b/source/inet.h @@ -1,47 +1,31 @@ -/* $Id$ - -This file is part of libmspnet -Copyright © 2008 Mikkosoft Productions, Mikko Rasa -Distributed under the LGPL -*/ - #ifndef MSP_NET_INET_H_ #define MSP_NET_INET_H_ -#ifdef WIN32 -#include -#else -#include -#endif -#include #include "sockaddr.h" namespace Msp { namespace Net { -#ifdef WIN32 -typedef u_long in_addr_t; -typedef u_short in_port_t; -#endif - /** Address class for IPv4 sockets. */ class InetAddr: public SockAddr { +private: + unsigned char addr[4]; + unsigned port; + public: InetAddr(); - InetAddr(sockaddr_in &); - InetAddr(in_addr_t, in_port_t); - 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; - unsigned fill_sockaddr(sockaddr &) const; - InetAddr *copy() const { return new InetAddr(*this); } -private: - in_addr_t addr; - in_port_t port; + InetAddr(const SysAddr &); + + virtual InetAddr *copy() const { return new InetAddr(*this); } + + virtual SysAddr to_sys() const; + + virtual Family get_family() const { return INET; } + unsigned get_port() const { return port; } + virtual std::string str() const; }; } // namespace Net