A class for working with IPv4 network addresses.
|
bool | AnyAddress () |
| Set address to any of the addresses of the current machine. More...
|
|
bool | Hostname (const wxString &hostname) |
| Set the address to hostname, which can be a host name, an IP-style address in dot notation(a.b.c.d ) or a 32-bit representation of the address as the number. More...
|
|
bool | Hostname (unsigned long addr) |
|
virtual wxString | Hostname () const |
| Returns the hostname which matches the IP address. More...
|
|
virtual wxString | IPAddress () const |
| Returns a wxString containing the IP address in dot quad (127.0.0.1) format. More...
|
|
bool | LocalHost () |
| Set address to localhost (127.0.0.1). More...
|
|
bool | Service (const wxString &service) |
| Set the port to that corresponding to the specified service. More...
|
|
bool | Service (unsigned short service) |
| Set the port to that corresponding to the specified service. More...
|
|
unsigned short | Service () const |
| Returns the current service. More...
|
|
bool | AnyAddress () |
| Internally, this is the same as setting the IP address to INADDR_ANY. More...
|
|
virtual bool | BroadcastAddress ()=0 |
| Internally, this is the same as setting the IP address to INADDR_BROADCAST. More...
|
|
bool | Hostname (const wxString &hostname) |
| Set the address to hostname, which can be a host name or an IP-style address in a format dependent on implementation. More...
|
|
wxString | Hostname () const |
| Returns the hostname which matches the IP address. More...
|
|
virtual bool | IsLocalHost () const =0 |
| Determines if current address is set to localhost. More...
|
|
bool | LocalHost () |
| Set address to localhost. More...
|
|
bool | Service (const wxString &service) |
| Set the port to that corresponding to the specified service. More...
|
|
bool | Service (unsigned short service) |
| Set the port to that corresponding to the specified service. More...
|
|
unsigned short | Service () const |
| Returns the current service. More...
|
|
| wxSockAddress () |
| Default constructor. More...
|
|
virtual | ~wxSockAddress () |
| Default destructor. More...
|
|
virtual void | Clear () |
| Delete all information about the address. More...
|
|
int | SockAddrLen () |
| Returns the length of the socket address. More...
|
|
const sockaddr * | GetAddressData () const |
| Returns the pointer to the low-level representation of the address. More...
|
|
int | GetAddressDataLen () const |
| Returns the length of the buffer retrieved by GetAddressData(). More...
|
|
| wxObject () |
| Default ctor; initializes to nullptr the internal reference data. More...
|
|
| wxObject (const wxObject &other) |
| Copy ctor. More...
|
|
virtual | ~wxObject () |
| Destructor. More...
|
|
virtual wxClassInfo * | GetClassInfo () const |
| This virtual function is redefined for every class that requires run-time type information, when using the wxDECLARE_CLASS macro (or similar). More...
|
|
wxObjectRefData * | GetRefData () const |
| Returns the wxObject::m_refData pointer, i.e. the data referenced by this object. More...
|
|
bool | IsKindOf (const wxClassInfo *info) const |
| Determines whether this class is a subclass of (or the same class as) the given class. More...
|
|
bool | IsSameAs (const wxObject &obj) const |
| Returns true if this object has the same data pointer as obj. More...
|
|
void | Ref (const wxObject &clone) |
| Makes this object refer to the data in clone. More...
|
|
void | SetRefData (wxObjectRefData *data) |
| Sets the wxObject::m_refData pointer. More...
|
|
void | UnRef () |
| Decrements the reference count in the associated data, and if it is zero, deletes the data. More...
|
|
void | UnShare () |
| This is the same of AllocExclusive() but this method is public. More...
|
|
void | operator delete (void *buf) |
| The delete operator is defined for debugging versions of the library only, when the identifier __WXDEBUG__ is defined. More...
|
|
void * | operator new (size_t size, const wxString &filename=nullptr, int lineNum=0) |
| The new operator is defined for debugging versions of the library only, when the identifier __WXDEBUG__ is defined. More...
|
|