]>
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>
35 #include <wx/gsocket.h>
36 #include <wx/sckaddr.h>
38 #if !USE_SHARED_LIBRARY
39 IMPLEMENT_ABSTRACT_CLASS(wxSockAddress
, wxObject
)
40 IMPLEMENT_DYNAMIC_CLASS(wxIPV4address
, wxSockAddress
)
42 IMPLEMENT_DYNAMIC_CLASS(wxIPV6address
, wxSockAddress
)
45 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 return (GAddress_INET_SetHostName(m_address
, name
.fn_str()) == GSOCK_NOERROR
);
107 bool wxIPV4address::Hostname(unsigned long addr
)
113 bool wxIPV4address::Service(const wxString
& name
)
115 return (GAddress_INET_SetPortName(m_address
, name
.fn_str()) == GSOCK_NOERROR
);
118 bool wxIPV4address::Service(unsigned short port
)
120 return (GAddress_INET_SetPort(m_address
, port
) == GSOCK_NOERROR
);
123 bool wxIPV4address::LocalHost()
125 return (GAddress_INET_SetHostName(m_address
, "localhost") == GSOCK_NOERROR
);
128 wxString
wxIPV4address::Hostname()
133 GAddress_INET_GetHostName(m_address
, hostname
, 1024);
134 return wxString(hostname
);
137 unsigned short wxIPV4address::Service()
139 return GAddress_INET_GetPort(m_address
);
143 // ---------------------------------------------------------------------------
145 // ---------------------------------------------------------------------------
147 wxIPV6address::wxIPV6address()
152 wxIPV6address::~wxIPV6address()
156 bool wxIPV6address::Hostname(const wxString
& name
)
158 return (GAddress_INET_SetHostName(m_address
, name
.fn_str()) == GSOCK_NOERROR
);
161 bool wxIPV6address::Hostname(unsigned char addr
[16])
166 bool wxIPV6address::Service(const char *name
)
168 return (GAddress_INET_SetPortName(m_address
, name
.fn_str()) == GSOCK_NOERROR
);
171 bool wxIPV6address::Service(unsigned short port
)
173 return (GAddress_INET_SetPort(m_address
, port
) == GSOCK_NOERROR
);
176 bool wxIPV6address::LocalHost()
178 return (GAddress_INET_SetHostName(m_address
, "localhost") == GSOCK_NOERROR
);
181 const wxString
& wxIPV6address::Hostname()
183 return wxString(GAddress_INET_GetHostName(m_address
));
186 unsigned short wxIPV6address::Service()
188 return GAddress_INET_GetPort(m_address
);
194 // ---------------------------------------------------------------------------
196 // ---------------------------------------------------------------------------
198 wxUNIXaddress::wxUNIXaddress()
203 wxUNIXaddress::~wxUNIXaddress()
207 void wxUNIXaddress::Filename(const wxString
& fname
)
209 GAddress_UNIX_SetPath(m_address
, fname
.fn_str());
212 wxString
wxUNIXaddress::Filename()
217 GAddress_UNIX_GetPath(m_address
, path
, 1024);
218 return wxString(path
);