]>
git.saurik.com Git - wxWidgets.git/blob - src/common/sckaddr.cpp
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"
29 #if !defined(__MWERKS__) && !defined(__SALFORDC__)
34 #include "wx/object.h"
37 #include "wx/gsocket.h"
38 #include "wx/sckaddr.h"
40 IMPLEMENT_ABSTRACT_CLASS(wxSockAddress
, wxObject
)
41 IMPLEMENT_DYNAMIC_CLASS(wxIPV4address
, wxSockAddress
)
43 IMPLEMENT_DYNAMIC_CLASS(wxIPV6address
, wxSockAddress
)
46 IMPLEMENT_DYNAMIC_CLASS(wxUNIXaddress
, wxSockAddress
)
49 // ---------------------------------------------------------------------------
51 // ---------------------------------------------------------------------------
53 wxSockAddress::wxSockAddress()
55 m_address
= GAddress_new();
58 wxSockAddress::~wxSockAddress()
60 GAddress_destroy(m_address
);
63 void wxSockAddress::SetAddress(GAddress
*address
)
65 GAddress_destroy(m_address
);
66 m_address
= GAddress_copy(address
);
69 const wxSockAddress
& wxSockAddress::operator=(const wxSockAddress
& addr
)
71 SetAddress(addr
.GetAddress());
75 void wxSockAddress::CopyObject(wxObject
& dest
) const
77 wxSockAddress
*addr
= (wxSockAddress
*)&dest
;
79 wxObject::CopyObject(dest
);
80 addr
->SetAddress(GetAddress());
83 void wxSockAddress::Clear()
85 GAddress_destroy(m_address
);
86 m_address
= GAddress_new();
89 // ---------------------------------------------------------------------------
91 // ---------------------------------------------------------------------------
93 wxIPV4address::wxIPV4address()
98 wxIPV4address::~wxIPV4address()
102 bool wxIPV4address::Hostname(const wxString
& name
)
104 // Some people are sometimes fool.
107 wxLogWarning( _("Trying to solve a NULL hostname: giving up") );
111 return (GAddress_INET_SetHostName(m_address
, name
.fn_str()) == GSOCK_NOERROR
);
114 bool wxIPV4address::Hostname(unsigned long addr
)
116 return (GAddress_INET_SetHostAddress(m_address
, addr
) == GSOCK_NOERROR
);
119 bool wxIPV4address::Service(const wxString
& name
)
121 return (GAddress_INET_SetPortName(m_address
, name
.fn_str(), "tcp") == GSOCK_NOERROR
);
124 bool wxIPV4address::Service(unsigned short port
)
126 return (GAddress_INET_SetPort(m_address
, port
) == GSOCK_NOERROR
);
129 bool wxIPV4address::LocalHost()
131 return (GAddress_INET_SetHostName(m_address
, "localhost") == GSOCK_NOERROR
);
134 wxString
wxIPV4address::Hostname()
139 GAddress_INET_GetHostName(m_address
, hostname
, 1024);
140 return wxString(hostname
);
143 unsigned short wxIPV4address::Service()
145 return GAddress_INET_GetPort(m_address
);
149 // ---------------------------------------------------------------------------
151 // ---------------------------------------------------------------------------
153 wxIPV6address::wxIPV6address()
158 wxIPV6address::~wxIPV6address()
162 bool wxIPV6address::Hostname(const wxString
& name
)
164 return (GAddress_INET_SetHostName(m_address
, name
.fn_str()) == GSOCK_NOERROR
);
167 bool wxIPV6address::Hostname(unsigned char addr
[16])
172 bool wxIPV6address::Service(const char *name
)
174 return (GAddress_INET_SetPortName(m_address
, name
.fn_str()) == GSOCK_NOERROR
);
177 bool wxIPV6address::Service(unsigned short port
)
179 return (GAddress_INET_SetPort(m_address
, port
) == GSOCK_NOERROR
);
182 bool wxIPV6address::LocalHost()
184 return (GAddress_INET_SetHostName(m_address
, "localhost") == GSOCK_NOERROR
);
187 const wxString
& wxIPV6address::Hostname()
189 return wxString(GAddress_INET_GetHostName(m_address
));
192 unsigned short wxIPV6address::Service()
194 return GAddress_INET_GetPort(m_address
);
200 // ---------------------------------------------------------------------------
202 // ---------------------------------------------------------------------------
204 wxUNIXaddress::wxUNIXaddress()
209 wxUNIXaddress::~wxUNIXaddress()
213 void wxUNIXaddress::Filename(const wxString
& fname
)
215 GAddress_UNIX_SetPath(m_address
, fname
.fn_str());
218 wxString
wxUNIXaddress::Filename()
223 GAddress_UNIX_GetPath(m_address
, path
, 1024);
224 return wxString(path
);