KNetwork::KInetSocketAddress Class Reference
an Internet socket address More...
#include <ksocketaddress.h>
Inheritance diagram for KNetwork::KInetSocketAddress:


Public Member Functions | |
KInetSocketAddress () | |
KInetSocketAddress (const sockaddr *sa, Q_UINT16 len) | |
KInetSocketAddress (const KIpAddress &host, Q_UINT16 port) | |
KInetSocketAddress (const KInetSocketAddress &other) | |
KInetSocketAddress (const KSocketAddress &other) | |
virtual | ~KInetSocketAddress () |
KInetSocketAddress & | operator= (const KInetSocketAddress &other) |
operator const sockaddr_in * () const | |
operator const sockaddr_in6 * () const | |
int | ipVersion () const |
KIpAddress | ipAddress () const |
KInetSocketAddress & | setHost (const KIpAddress &addr) |
Q_UINT16 | port () const |
KInetSocketAddress & | setPort (Q_UINT16 port) |
KInetSocketAddress & | makeIPv4 () |
KInetSocketAddress & | makeIPv6 () |
Q_UINT32 | flowinfo () const |
KInetSocketAddress & | setFlowinfo (Q_UINT32 flowinfo) |
int | scopeId () const |
KInetSocketAddress & | setScopeId (int scopeid) |
Protected Member Functions | |
KInetSocketAddress (KSocketAddressData *d) |
Detailed Description
an Internet socket addressAn Inet (IPv4 or IPv6) socket address
This is an IPv4 or IPv6 address of the Internet.
- Author:
- Thiago Macieira <thiago.macieira@kdemail.net>
Definition at line 640 of file ksocketaddress.h.
Constructor & Destructor Documentation
|
Public constructor. Creates an empty object. |
|
Creates an object from raw data.
Note: if the socket address
|
|
Creates an object from an IP address and port.
|
|
Copy constructor. Data is not shared.
|
|
Copy constructor. If the other, generic socket address contains an Internet address, it will be copied. Otherwise, this object will be empty.
|
|
Destroys this object.
|
Member Function Documentation
|
Copy operator. Copies the other object into this one.
|
|
Cast operator to sockaddr_in. Definition at line 704 of file ksocketaddress.h. References KNetwork::KSocketAddress::address(). |
|
Cast operator to sockaddr_in6. Definition at line 710 of file ksocketaddress.h. References KNetwork::KSocketAddress::address(). |
|
Returns the IP version of the address this object holds.
|
|
Returns the IP address component.
|
|
Sets the IP address to the given raw address. This call will preserve port numbers accross IP versions, but will lose IPv6 specific data if the address is set to IPv4.
|
|
Retrieves the port number stored in this object.
|
|
Sets the port number. If this object is empty, this function will default to creating an IPv4 address.
|
|
Converts this object to an IPv4 socket address. It has no effect if the object is already an IPv4 socket address. If this object is an IPv6 address, the port number is preserved. All other information is lost.
|
|
Converts this object to an IPv6 socket address. It has no effect if the object is already an IPv6 socket address. If this object is an IPv4 address, the port number is preserved.
|
|
Returns the flowinfo information from the IPv6 socket address.
|
|
Sets the flowinfo information for an IPv6 socket address. If this is not an IPv6 socket address, this function converts it to one.
|
|
Returns the scope id this IPv6 socket is bound to.
|
|
Sets the scope id for this IPv6 object. If this is not an IPv6 socket address, this function converts it to one.
|
The documentation for this class was generated from the following file: