1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Network address classes
4 // Author: Guilhem Lavaux
8 // Copyright: (c) 1997, 1998 Guilhem Lavaux
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_NETWORK_ADDRESS_H
13 #define _WX_NETWORK_ADDRESS_H
23 #include "wx/string.h"
24 #include "wx/gsocket.h"
27 class WXDLLEXPORT wxSockAddress
: public wxObject
{
28 DECLARE_ABSTRACT_CLASS(wxSockAddress
)
30 typedef enum { IPV4
=1, IPV6
=2, UNIX
=3 } Addr
;
33 wxSockAddress(const wxSockAddress
& other
);
34 virtual ~wxSockAddress();
36 wxSockAddress
& operator=(const wxSockAddress
& other
);
39 virtual int Type() = 0;
41 GAddress
*GetAddress() const { return m_address
; }
42 void SetAddress(GAddress
*address
);
44 // we need to be able to create copies of the addresses polymorphically (i.e.
45 // wihtout knowing the exact address class)
46 virtual wxSockAddress
*Clone() const = 0;
52 class WXDLLEXPORT wxIPV4address
: public wxSockAddress
{
53 DECLARE_DYNAMIC_CLASS(wxIPV4address
)
56 wxIPV4address(const wxIPV4address
& other
);
57 virtual ~wxIPV4address();
59 bool Hostname(const wxString
& name
);
60 bool Hostname(unsigned long addr
);
61 bool Service(const wxString
& name
);
62 bool Service(unsigned short port
);
67 wxString
OrigHostname() { return m_origHostname
; }
68 unsigned short Service();
70 virtual int Type() { return wxSockAddress::IPV4
; }
71 virtual wxSockAddress
*Clone() const;
74 wxString m_origHostname
;
78 class WXDLLEXPORT wxIPV6address
: public wxSockAddress
{
79 DECLARE_DYNAMIC_CLASS(wxIPV6address
)
81 struct sockaddr_in6
*m_addr
;
84 wxIPV6address(const wxIPV6address
& other
);
85 virtual ~wxIPV6address();
87 bool Hostname(const wxString
& name
);
88 bool Hostname(unsigned char addr
[16]);
89 bool Service(const wxString
& name
);
90 bool Service(unsigned short port
);
93 wxString
Hostname() const;
94 unsigned short Service() const;
96 virtual int Type() { return wxSockAddress::IPV6
; }
97 virtual wxSockAddress
*Clone() const { return new wxIPV6address(*this); }
101 #if defined(__UNIX__) && !defined(__WXMAC__)
102 #include <sys/socket.h>
107 class WXDLLEXPORT wxUNIXaddress
: public wxSockAddress
{
108 DECLARE_DYNAMIC_CLASS(wxUNIXaddress
)
110 struct sockaddr_un
*m_addr
;
113 wxUNIXaddress(const wxUNIXaddress
& other
);
114 virtual ~wxUNIXaddress();
116 void Filename(const wxString
& name
);
119 virtual int Type() { return wxSockAddress::UNIX
; }
120 virtual wxSockAddress
*Clone() const { return new wxUNIXaddress(*this); }
129 // _WX_NETWORK_ADDRESS_H