]>
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 | ||
af49c4b8 GD |
15 | #if defined(__GNUG__) && !defined(__APPLE__) |
16 | #pragma interface "sckaddr.h" | |
2df7be7f RR |
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 | 44 | // we need to be able to create copies of the addresses polymorphically (i.e. |
6c0d0845 | 45 | // without knowing the exact address class) |
acd15a3f | 46 | virtual wxSockAddress *Clone() const = 0; |
f4ada568 | 47 | |
a324a7bc GL |
48 | protected: |
49 | GAddress *m_address; | |
6c0d0845 VZ |
50 | |
51 | private: | |
52 | void Init(); | |
f4ada568 GL |
53 | }; |
54 | ||
55 | class WXDLLEXPORT wxIPV4address : public wxSockAddress { | |
56 | DECLARE_DYNAMIC_CLASS(wxIPV4address) | |
f4ada568 GL |
57 | public: |
58 | wxIPV4address(); | |
1539c2f5 | 59 | wxIPV4address(const wxIPV4address& other); |
f4ada568 GL |
60 | virtual ~wxIPV4address(); |
61 | ||
a324a7bc GL |
62 | bool Hostname(const wxString& name); |
63 | bool Hostname(unsigned long addr); | |
64 | bool Service(const wxString& name); | |
65 | bool Service(unsigned short port); | |
66 | bool LocalHost(); | |
636c47a7 | 67 | bool AnyAddress(); |
f4ada568 GL |
68 | |
69 | wxString Hostname(); | |
ce22d615 | 70 | wxString OrigHostname() { return m_origHostname; } |
f4ada568 GL |
71 | unsigned short Service(); |
72 | ||
acd15a3f | 73 | virtual int Type() { return wxSockAddress::IPV4; } |
ce22d615 RD |
74 | virtual wxSockAddress *Clone() const; |
75 | ||
76 | private: | |
77 | wxString m_origHostname; | |
f4ada568 GL |
78 | }; |
79 | ||
80 | #ifdef ENABLE_IPV6 | |
81 | class WXDLLEXPORT wxIPV6address : public wxSockAddress { | |
82 | DECLARE_DYNAMIC_CLASS(wxIPV6address) | |
83 | private: | |
84 | struct sockaddr_in6 *m_addr; | |
85 | public: | |
86 | wxIPV6address(); | |
1539c2f5 VZ |
87 | wxIPV6address(const wxIPV6address& other); |
88 | virtual ~wxIPV6address(); | |
f4ada568 | 89 | |
f4ada568 GL |
90 | bool Hostname(const wxString& name); |
91 | bool Hostname(unsigned char addr[16]); | |
92 | bool Service(const wxString& name); | |
93 | bool Service(unsigned short port); | |
94 | bool LocalHost(); | |
95 | ||
96 | wxString Hostname() const; | |
97 | unsigned short Service() const; | |
98 | ||
acd15a3f VZ |
99 | virtual int Type() { return wxSockAddress::IPV6; } |
100 | virtual wxSockAddress *Clone() const { return new wxIPV6address(*this); } | |
f4ada568 GL |
101 | }; |
102 | #endif | |
103 | ||
5283098e | 104 | #if defined(__UNIX__) && !defined(__WINE__) && (!defined(__WXMAC__) || defined(__DARWIN__)) |
fd9811b1 | 105 | #include <sys/socket.h> |
e1c70641 JJ |
106 | #ifndef __VMS__ |
107 | # include <sys/un.h> | |
108 | #endif | |
f4ada568 GL |
109 | |
110 | class WXDLLEXPORT wxUNIXaddress : public wxSockAddress { | |
111 | DECLARE_DYNAMIC_CLASS(wxUNIXaddress) | |
112 | private: | |
113 | struct sockaddr_un *m_addr; | |
114 | public: | |
115 | wxUNIXaddress(); | |
1539c2f5 VZ |
116 | wxUNIXaddress(const wxUNIXaddress& other); |
117 | virtual ~wxUNIXaddress(); | |
f4ada568 | 118 | |
f4ada568 GL |
119 | void Filename(const wxString& name); |
120 | wxString Filename(); | |
121 | ||
acd15a3f VZ |
122 | virtual int Type() { return wxSockAddress::UNIX; } |
123 | virtual wxSockAddress *Clone() const { return new wxUNIXaddress(*this); } | |
f4ada568 GL |
124 | }; |
125 | #endif | |
2df7be7f | 126 | // __UNIX__ |
f4ada568 GL |
127 | |
128 | #endif | |
2df7be7f | 129 | // wxUSE_SOCKETS |
65ccd2b8 | 130 | |
2df7be7f RR |
131 | #endif |
132 | // _WX_NETWORK_ADDRESS_H |