]>
git.saurik.com Git - wxWidgets.git/blob - src/common/sckaddr.cpp
f3a3f4802603f779cc0baa0cc2b198ce89277715
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Network address manager
4 // Author: Guilhem Lavaux
8 // Copyright: (c) 1997, 1998 Guilhem Lavaux
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "sckaddr.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
30 #if !defined(__MWERKS__) && !defined(__SALFORDC__)
35 #include "wx/object.h"
37 #if defined(__WXMAC__)
38 #include "/wx/mac/macsock.h"
41 #if defined(__WINDOWS__)
50 #include <sys/types.h>
51 #include <sys/socket.h>
52 #include <netinet/in.h>
53 #include <arpa/inet.h>
60 #include "wx/sckaddr.h"
62 #define CHECK_ADDRTYPE(var, type)
64 #if !USE_SHARED_LIBRARY
65 IMPLEMENT_ABSTRACT_CLASS(wxSockAddress
, wxObject
)
66 IMPLEMENT_DYNAMIC_CLASS(wxIPV4address
, wxSockAddress
)
68 IMPLEMENT_DYNAMIC_CLASS(wxIPV6address
, wxSockAddress
)
71 IMPLEMENT_DYNAMIC_CLASS(wxUNIXaddress
, wxSockAddress
)
75 wxIPV4address::wxIPV4address()
77 m_addr
= new sockaddr_in
;
81 wxIPV4address::~wxIPV4address()
85 int wxIPV4address::SockAddrLen()
87 return sizeof(*m_addr
);
90 int wxIPV4address::GetFamily()
95 void wxIPV4address::Clear()
97 memset(m_addr
, 0, sizeof(*m_addr
));
98 m_addr
->sin_family
= AF_INET
;
99 m_addr
->sin_addr
.s_addr
= INADDR_ANY
;
103 const wxSockAddress& wxIPV4address::operator =(const wxSockAddress& addr)
105 wxIPV4address *ip_addr = (wxIPV4address *)&addr;
106 CHECK_ADDRTYPE(addr, wxIPV4address);
107 m_addr = ip_addr->m_addr;
112 bool wxIPV4address::Hostname(const wxString
& name
)
114 struct hostent
*theHostent
;
115 struct in_addr
*addr
;
120 if (!name
.IsNumber()) {
121 if ((theHostent
= gethostbyname(name
.GetData())) == 0) {
126 long len_addr
= inet_addr(name
.GetData()).s_addr
;
128 long len_addr
= inet_addr(name
.GetData());
132 m_addr
->sin_addr
.s_addr
= len_addr
;
136 addr
= (struct in_addr
*) *(theHostent
->h_addr_list
);
138 m_addr
->sin_addr
.s_addr
= addr
[0].s_addr
;
142 bool wxIPV4address::Hostname(unsigned long addr
)
144 m_addr
->sin_addr
.s_addr
= htonl(addr
);
148 bool wxIPV4address::Service(const wxString
& name
)
150 struct servent
*theServent
;
155 if (!name
.IsNumber()) {
156 if ((theServent
= getservbyname(name
, "tcp")) == 0)
159 if ((theServent
= getservbyport(atoi(name
), "tcp")) == 0) {
160 m_addr
->sin_port
= htons(atoi(name
));
165 m_addr
->sin_port
= theServent
->s_port
;
169 bool wxIPV4address::Service(unsigned short port
)
171 m_addr
->sin_port
= htons(port
);
175 bool wxIPV4address::LocalHost()
177 static char buf
[256];
179 if (gethostname(buf
, sizeof(buf
)) < 0)
180 return Hostname("localhost");
182 return Hostname(buf
);
185 wxString
wxIPV4address::Hostname()
187 struct hostent
*h_ent
;
189 h_ent
= gethostbyaddr((char *)&(m_addr
->sin_addr
), sizeof(m_addr
->sin_addr
),
191 return wxString(h_ent
->h_name
);
194 unsigned short wxIPV4address::Service()
196 return ntohs(m_addr
->sin_port
);
199 void wxIPV4address::Build(struct sockaddr
*&addr
, size_t& len
)
201 addr
= (struct sockaddr
*)m_addr
;
202 len
= sizeof(*m_addr
);
205 void wxIPV4address::Disassemble(struct sockaddr
*addr
, size_t len
)
207 if (len
!= sizeof(*m_addr
))
209 *m_addr
= *(struct sockaddr_in
*)addr
;
214 wxIPV6address::wxIPV6address()
216 m_addr
= new sockaddr_in6
;
220 wxIPV6address::~wxIPV6address()
224 int wxIPV6address::SockAddrLen()
226 return sizeof(*m_addr
);
229 int wxIPV6address::GetFamily()
234 void wxIPV6address::Clear()
236 memset(m_addr
, 0, sizeof(*m_addr
));
237 m_addr
->sin6_family
= AF_INET6
;
238 m_addr
->sin6_addr
.s_addr
= INADDR_ANY
;
242 const wxSockAddress& wxIPV6address::operator =(const wxSockAddress& addr)
244 wxIPV6address *ip_addr = (wxIPV6address *)&addr;
246 CHECK_ADDRTYPE(addr, wxIPV6address);
247 m_addr = ip_addr->m_addr;
252 bool wxIPV6address::Hostname(const wxString
& name
)
254 struct hostent
*theHostent
;
255 struct in_addr
*addr
;
260 if (!name
.IsNumber()) {
261 hostent
= gethostbyname2((char*) name
, AF_INET6
);
269 addr
= (struct in6_addr
*) *(theHostent
->h_addr_list
);
271 m_addr
->sin6_addr
.s6_addr
= addr
[0].s6_addr
;
275 bool wxIPV6address::Hostname(unsigned char addr
[16])
277 m_addr
->sin6_addr
.s6_addr
= addr
;
281 bool wxIPV6address::Service(const char *name
)
283 struct servent
*theServent
;
285 if (!name
|| !strlen(name
))
288 if (!isdigit(*name
)) {
289 if ((theServent
= getservbyname((char*) name
, "tcp")) == 0)
292 if ((theServent
= getservbyport(atoi(name
), "tcp")) == 0) {
293 m_addr
->sin_port
= htons(atoi(name
));
298 m_addr
->sin_port
= theServent
->s_port
;
302 bool wxIPV6address::Service(unsigned short port
)
304 m_addr
->sin_port
= htons(port
);
308 bool wxIPV6address::LocalHost()
310 static char buf
[256];
312 if (gethostname(buf
, sizeof(buf
)) < 0)
313 return Hostname("localhost");
315 return Hostname(buf
);
318 const wxString
& wxIPV6address::Hostname()
320 struct hostent
*h_ent
;
322 h_ent
= gethostbyaddr((char *)&(m_addr
->sin_addr
), sizeof(m_addr
->sin_addr
),
324 return wxString(h_ent
->h_name
);
327 unsigned short wxIPV6address::Service()
329 return ntohs(m_addr
->sin_port
);
332 void wxIPV6address::Build(struct sockaddr
& *addr
, size_t& len
)
334 len
= sizeof(*m_addr
);
338 void wxIPV6address::Disassemble(struct sockaddr
& *addr
, size_t len
)
340 if (len
!= sizeof(*m_addr
))
342 *m_addr
= *(struct sockaddr_in6
*)addr
;
350 wxUNIXaddress::wxUNIXaddress()
352 m_addr
= new sockaddr_un
;
356 wxUNIXaddress::~wxUNIXaddress()
360 int wxUNIXaddress::SockAddrLen()
362 return sizeof(*m_addr
);
365 int wxUNIXaddress::GetFamily()
370 void wxUNIXaddress::Clear()
372 memset(m_addr
, 0, sizeof(m_addr
));
373 m_addr
->sun_family
= AF_UNIX
;
377 const wxSockAddress& wxUNIXaddress::operator =(const wxSockAddress& addr)
379 wxUNIXaddress *unx_addr = (wxUNIXaddress *)&addr;
380 CHECK_ADDRTYPE(addr, wxUNIXaddress);
381 m_addr = unx_addr->m_addr;
386 void wxUNIXaddress::Filename(const wxString
& fname
)
388 sprintf(m_addr
->sun_path
, "%s", WXSTRINGCAST fname
);
391 wxString
wxUNIXaddress::Filename()
393 return wxString(m_addr
->sun_path
);
396 void wxUNIXaddress::Build(struct sockaddr
*& addr
, size_t& len
)
398 addr
= (struct sockaddr
*)m_addr
;
399 len
= sizeof(*m_addr
);
402 void wxUNIXaddress::Disassemble(struct sockaddr
*addr
, size_t len
)
404 if (len
!= sizeof(*m_addr
))
406 *m_addr
= *(struct sockaddr_un
*)addr
;