]> git.saurik.com Git - wxWidgets.git/blame - include/wx/sckaddr.h
wxUSE_SPLINES markup and other cleanings.
[wxWidgets.git] / include / wx / sckaddr.h
CommitLineData
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
65571936 9// Licence: wxWindows licence
f4ada568 10/////////////////////////////////////////////////////////////////////////////
2df7be7f 11
f4ada568
GL
12#ifndef _WX_NETWORK_ADDRESS_H
13#define _WX_NETWORK_ADDRESS_H
14
12028905 15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
af49c4b8 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 26
7c4728f6 27class WXDLLIMPEXP_NET wxSockAddress : public wxObject {
f4ada568
GL
28 DECLARE_ABSTRACT_CLASS(wxSockAddress)
29public:
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
48protected:
49 GAddress *m_address;
6c0d0845
VZ
50
51private:
52 void Init();
f4ada568
GL
53};
54
be4bd463
JS
55// Interface to an IP address (either IPV4 or IPV6)
56class WXDLLIMPEXP_NET wxIPaddress : public wxSockAddress {
57 DECLARE_ABSTRACT_CLASS(wxIPaddress)
58public:
59 wxIPaddress();
60 wxIPaddress(const wxIPaddress& other);
61 virtual ~wxIPaddress();
62
63 virtual bool Hostname(const wxString& name) = 0;
64 virtual bool Service(const wxString& name) = 0;
65 virtual bool Service(unsigned short port) = 0;
66
67 virtual bool LocalHost() = 0;
68 virtual bool IsLocalHost() const = 0;
69
70 virtual bool AnyAddress() = 0;
71
72 virtual wxString IPAddress() const = 0;
73
74 virtual wxString Hostname() const = 0;
75 virtual unsigned short Service() const = 0;
76};
77
78class WXDLLIMPEXP_NET wxIPV4address : public wxIPaddress {
f4ada568 79 DECLARE_DYNAMIC_CLASS(wxIPV4address)
f4ada568
GL
80public:
81 wxIPV4address();
1539c2f5 82 wxIPV4address(const wxIPV4address& other);
f4ada568
GL
83 virtual ~wxIPV4address();
84
be4bd463
JS
85 // IPV4 name formats
86 //
87 // hostname
88 // dot format a.b.c.d
89 virtual bool Hostname(const wxString& name);
a324a7bc 90 bool Hostname(unsigned long addr);
be4bd463
JS
91 virtual bool Service(const wxString& name);
92 virtual bool Service(unsigned short port);
93
94 // localhost (127.0.0.1)
95 virtual bool LocalHost();
96 virtual bool IsLocalHost() const;
f4ada568 97
be4bd463
JS
98 // any (0.0.0.0)
99 virtual bool AnyAddress();
100
101 virtual wxString Hostname() const;
ce22d615 102 wxString OrigHostname() { return m_origHostname; }
be4bd463
JS
103 virtual unsigned short Service() const;
104
105 // a.b.c.d
106 virtual wxString IPAddress() const;
f4ada568 107
acd15a3f 108 virtual int Type() { return wxSockAddress::IPV4; }
ce22d615 109 virtual wxSockAddress *Clone() const;
d775fa82 110
1d6d8b5d 111 bool operator==(wxIPV4address& addr);
ce22d615
RD
112
113private:
114 wxString m_origHostname;
f4ada568
GL
115};
116
2ff35079
VZ
117
118// the IPv6 code probably doesn't work, untested -- set to 1 at your own risk
119#ifndef wxUSE_IPV6
120 #define wxUSE_IPV6 0
121#endif
122
be4bd463
JS
123#if wxUSE_IPV6
124
125// Experimental Only:
126//
127// IPV6 has not yet been implemented in socket layer
128class WXDLLIMPEXP_NET wxIPV6address : public wxIPaddress {
f4ada568
GL
129 DECLARE_DYNAMIC_CLASS(wxIPV6address)
130private:
131 struct sockaddr_in6 *m_addr;
132public:
133 wxIPV6address();
1539c2f5
VZ
134 wxIPV6address(const wxIPV6address& other);
135 virtual ~wxIPV6address();
f4ada568 136
be4bd463
JS
137 // IPV6 name formats
138 //
139 // hostname
d775fa82 140 // 3ffe:ffff:0100:f101:0210:a4ff:fee3:9566
be4bd463
JS
141 // compact (base85) Itu&-ZQ82s>J%s99FJXT
142 // compressed format ::1
143 // ipv4 mapped ::ffff:1.2.3.4
144 virtual bool Hostname(const wxString& name);
145
f4ada568 146 bool Hostname(unsigned char addr[16]);
be4bd463
JS
147 virtual bool Service(const wxString& name);
148 virtual bool Service(unsigned short port);
149
150 // localhost (0000:0000:0000:0000:0000:0000:0000:0001 (::1))
151 virtual bool LocalHost();
152 virtual bool IsLocalHost() const;
f4ada568 153
be4bd463
JS
154 // any (0000:0000:0000:0000:0000:0000:0000:0000 (::))
155 virtual bool AnyAddress();
156
d775fa82 157 // 3ffe:ffff:0100:f101:0210:a4ff:fee3:9566
be4bd463
JS
158 virtual wxString IPAddress() const;
159
160 virtual wxString Hostname() const;
161 virtual unsigned short Service() const;
f4ada568 162
acd15a3f
VZ
163 virtual int Type() { return wxSockAddress::IPV6; }
164 virtual wxSockAddress *Clone() const { return new wxIPV6address(*this); }
f4ada568 165};
be4bd463
JS
166
167#endif // wxUSE_IPV6
f4ada568 168
04d8f1ba 169#if defined(__UNIX__) && !defined(__WINE__) && (!defined(__WXMAC__) || defined(__DARWIN__)) && !defined(__WXMSW__)
fd9811b1 170#include <sys/socket.h>
e1c70641
JJ
171#ifndef __VMS__
172# include <sys/un.h>
173#endif
f4ada568 174
7c4728f6 175class WXDLLIMPEXP_NET wxUNIXaddress : public wxSockAddress {
f4ada568
GL
176 DECLARE_DYNAMIC_CLASS(wxUNIXaddress)
177private:
178 struct sockaddr_un *m_addr;
179public:
180 wxUNIXaddress();
1539c2f5
VZ
181 wxUNIXaddress(const wxUNIXaddress& other);
182 virtual ~wxUNIXaddress();
f4ada568 183
f4ada568
GL
184 void Filename(const wxString& name);
185 wxString Filename();
186
acd15a3f
VZ
187 virtual int Type() { return wxSockAddress::UNIX; }
188 virtual wxSockAddress *Clone() const { return new wxUNIXaddress(*this); }
f4ada568
GL
189};
190#endif
2df7be7f 191 // __UNIX__
f4ada568
GL
192
193#endif
2df7be7f 194 // wxUSE_SOCKETS
65ccd2b8 195
2df7be7f
RR
196#endif
197 // _WX_NETWORK_ADDRESS_H