00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00025 #ifndef SOCKETSTREAM_INET_ADDRESS_H
00026 #define SOCKETSTREAM_INET_ADDRESS_H 1
00027
00028 #include <socketstream/config.h>
00029
00030 #ifndef WIN32
00031 # include <netinet/in.h>
00032 #endif
00033
00034 namespace ss {
00035
00039 class SOCKETSTREAM_API ipv4_address : protected sockaddr_in
00040 {
00041 public:
00042
00046 typedef sockaddr_in sockaddr_t;
00047
00051 static const int AF = AF_INET;
00052
00056 static const in_addr any;
00057
00061 static const in_addr loopback;
00062
00066 ipv4_address ();
00067
00079 ipv4_address (in_addr const& address, unsigned short port);
00080
00084 ipv4_address (ipv4_address const& that);
00085
00089 ipv4_address (sockaddr_in const& that);
00090
00096 ipv4_address (sockaddr const& that);
00097
00101 ipv4_address& operator= (ipv4_address const& that);
00102
00106 ipv4_address& operator= (sockaddr_in const& that);
00107
00113 ipv4_address& operator= (sockaddr const& that);
00114
00115 };
00116
00117 }
00118
00119 #endif // SOCKETSTREAM_INET_ADDRESS_H