]>
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
)
45 #if defined(__UNIX__) && !defined(__WXMAC_X__)
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
.mb_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
.mb_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 bool wxIPV4address::AnyAddress()
136 return (GAddress_INET_SetAnyAddress(m_address
) == GSOCK_NOERROR
);
139 wxString
wxIPV4address::Hostname()
144 GAddress_INET_GetHostName(m_address
, hostname
, 1024);
145 return wxString(hostname
);
148 unsigned short wxIPV4address::Service()
150 return GAddress_INET_GetPort(m_address
);
154 // ---------------------------------------------------------------------------
156 // ---------------------------------------------------------------------------
158 wxIPV6address::wxIPV6address()
163 wxIPV6address::~wxIPV6address()
167 bool wxIPV6address::Hostname(const wxString
& name
)
169 return (GAddress_INET_SetHostName(m_address
, name
.fn_str()) == GSOCK_NOERROR
);
172 bool wxIPV6address::Hostname(unsigned char addr
[16])
177 bool wxIPV6address::Service(const char *name
)
179 return (GAddress_INET_SetPortName(m_address
, name
.fn_str()) == GSOCK_NOERROR
);
182 bool wxIPV6address::Service(unsigned short port
)
184 return (GAddress_INET_SetPort(m_address
, port
) == GSOCK_NOERROR
);
187 bool wxIPV6address::LocalHost()
189 return (GAddress_INET_SetHostName(m_address
, "localhost") == GSOCK_NOERROR
);
192 const wxString
& wxIPV6address::Hostname()
194 return wxString(GAddress_INET_GetHostName(m_address
));
197 unsigned short wxIPV6address::Service()
199 return GAddress_INET_GetPort(m_address
);
204 #if defined(__UNIX__) && !defined(__WXMAC_X__)
205 // ---------------------------------------------------------------------------
207 // ---------------------------------------------------------------------------
209 wxUNIXaddress::wxUNIXaddress()
214 wxUNIXaddress::~wxUNIXaddress()
218 void wxUNIXaddress::Filename(const wxString
& fname
)
220 GAddress_UNIX_SetPath(m_address
, fname
.fn_str());
223 wxString
wxUNIXaddress::Filename()
228 GAddress_UNIX_GetPath(m_address
, path
, 1024);
229 return wxString(path
);