]>
Commit | Line | Data |
---|---|---|
f4ada568 GL |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: sckaddr.h | |
3 | // Purpose: Network address classes | |
4 | // Author: Guilhem Lavaux | |
5 | // Modified by: | |
6 | // Created: 26/04/1997 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1997, 1998 Guilhem Lavaux | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
2df7be7f | 11 | |
f4ada568 GL |
12 | #ifndef _WX_NETWORK_ADDRESS_H |
13 | #define _WX_NETWORK_ADDRESS_H | |
14 | ||
2df7be7f RR |
15 | #ifdef __GNUG__ |
16 | #pragma interface | |
17 | #endif | |
18 | ||
19 | #include "wx/defs.h" | |
20 | ||
21 | #if wxUSE_SOCKETS | |
22 | ||
2df7be7f | 23 | #include "wx/string.h" |
65ccd2b8 | 24 | #include "wx/gsocket.h" |
a324a7bc | 25 | |
f4ada568 GL |
26 | |
27 | class WXDLLEXPORT wxSockAddress : public wxObject { | |
28 | DECLARE_ABSTRACT_CLASS(wxSockAddress) | |
29 | public: | |
30 | typedef enum { IPV4=1, IPV6=2, UNIX=3 } Addr; | |
31 | ||
a324a7bc | 32 | wxSockAddress(); |
1539c2f5 | 33 | wxSockAddress(const wxSockAddress& other); |
a324a7bc GL |
34 | virtual ~wxSockAddress(); |
35 | ||
1539c2f5 VZ |
36 | wxSockAddress& operator=(const wxSockAddress& other); |
37 | ||
a324a7bc GL |
38 | virtual void Clear(); |
39 | virtual int Type() = 0; | |
f4ada568 | 40 | |
a324a7bc GL |
41 | GAddress *GetAddress() const { return m_address; } |
42 | void SetAddress(GAddress *address); | |
f4ada568 | 43 | |
acd15a3f VZ |
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; | |
f4ada568 | 47 | |
a324a7bc GL |
48 | protected: |
49 | GAddress *m_address; | |
f4ada568 GL |
50 | }; |
51 | ||
52 | class WXDLLEXPORT wxIPV4address : public wxSockAddress { | |
53 | DECLARE_DYNAMIC_CLASS(wxIPV4address) | |
f4ada568 GL |
54 | public: |
55 | wxIPV4address(); | |
1539c2f5 | 56 | wxIPV4address(const wxIPV4address& other); |
f4ada568 GL |
57 | virtual ~wxIPV4address(); |
58 | ||
a324a7bc GL |
59 | bool Hostname(const wxString& name); |
60 | bool Hostname(unsigned long addr); | |
61 | bool Service(const wxString& name); | |
62 | bool Service(unsigned short port); | |
63 | bool LocalHost(); | |
636c47a7 | 64 | bool AnyAddress(); |
f4ada568 GL |
65 | |
66 | wxString Hostname(); | |
ce22d615 | 67 | wxString OrigHostname() { return m_origHostname; } |
f4ada568 GL |
68 | unsigned short Service(); |
69 | ||
acd15a3f | 70 | virtual int Type() { return wxSockAddress::IPV4; } |
ce22d615 RD |
71 | virtual wxSockAddress *Clone() const; |
72 | ||
73 | private: | |
74 | wxString m_origHostname; | |
f4ada568 GL |
75 | }; |
76 | ||
77 | #ifdef ENABLE_IPV6 | |
78 | class WXDLLEXPORT wxIPV6address : public wxSockAddress { | |
79 | DECLARE_DYNAMIC_CLASS(wxIPV6address) | |
80 | private: | |
81 | struct sockaddr_in6 *m_addr; | |
82 | public: | |
83 | wxIPV6address(); | |
1539c2f5 VZ |
84 | wxIPV6address(const wxIPV6address& other); |
85 | virtual ~wxIPV6address(); | |
f4ada568 | 86 | |
f4ada568 GL |
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); | |
91 | bool LocalHost(); | |
92 | ||
93 | wxString Hostname() const; | |
94 | unsigned short Service() const; | |
95 | ||
acd15a3f VZ |
96 | virtual int Type() { return wxSockAddress::IPV6; } |
97 | virtual wxSockAddress *Clone() const { return new wxIPV6address(*this); } | |
f4ada568 GL |
98 | }; |
99 | #endif | |
100 | ||
f11bdd03 | 101 | #if defined(__UNIX__) && !defined(__WXMAC__) |
fd9811b1 | 102 | #include <sys/socket.h> |
e1c70641 JJ |
103 | #ifndef __VMS__ |
104 | # include <sys/un.h> | |
105 | #endif | |
f4ada568 GL |
106 | |
107 | class WXDLLEXPORT wxUNIXaddress : public wxSockAddress { | |
108 | DECLARE_DYNAMIC_CLASS(wxUNIXaddress) | |
109 | private: | |
110 | struct sockaddr_un *m_addr; | |
111 | public: | |
112 | wxUNIXaddress(); | |
1539c2f5 VZ |
113 | wxUNIXaddress(const wxUNIXaddress& other); |
114 | virtual ~wxUNIXaddress(); | |
f4ada568 | 115 | |
f4ada568 GL |
116 | void Filename(const wxString& name); |
117 | wxString Filename(); | |
118 | ||
acd15a3f VZ |
119 | virtual int Type() { return wxSockAddress::UNIX; } |
120 | virtual wxSockAddress *Clone() const { return new wxUNIXaddress(*this); } | |
f4ada568 GL |
121 | }; |
122 | #endif | |
2df7be7f | 123 | // __UNIX__ |
f4ada568 GL |
124 | |
125 | #endif | |
2df7be7f | 126 | // wxUSE_SOCKETS |
65ccd2b8 | 127 | |
2df7be7f RR |
128 | #endif |
129 | // _WX_NETWORK_ADDRESS_H |