diff options
author | Timothy Pearson <[email protected]> | 2013-11-06 16:23:17 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-11-06 16:23:17 -0600 |
commit | e193e0140419d117a52e3756ddd9d2bdf3ab7a4a (patch) | |
tree | 2581a958653985ed91ff63ff702ad47a253553b3 /doc/man/man3/qhostaddress.3qt | |
parent | ab9c0372a33806de1210b9b6f3bc7544895ad4fb (diff) | |
download | tqt3-e193e0140419d117a52e3756ddd9d2bdf3ab7a4a.tar.gz tqt3-e193e0140419d117a52e3756ddd9d2bdf3ab7a4a.zip |
Automated update from Qt3
Diffstat (limited to 'doc/man/man3/qhostaddress.3qt')
-rw-r--r-- | doc/man/man3/qhostaddress.3qt | 188 |
1 files changed, 0 insertions, 188 deletions
diff --git a/doc/man/man3/qhostaddress.3qt b/doc/man/man3/qhostaddress.3qt deleted file mode 100644 index 2666b7d34..000000000 --- a/doc/man/man3/qhostaddress.3qt +++ /dev/null @@ -1,188 +0,0 @@ -'\" t -.TH QHostAddress 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- -.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the -.\" license file included in the distribution for a complete license -.\" statement. -.\" -.ad l -.nh -.SH NAME -QHostAddress \- IP address -.SH SYNOPSIS -\fC#include <ntqhostaddress.h>\fR -.PP -.SS "Public Members" -.in +1c -.ti -1c -.BI "\fBQHostAddress\fR ()" -.br -.ti -1c -.BI "\fBQHostAddress\fR ( TQ_UINT32 ip4Addr )" -.br -.ti -1c -.BI "\fBQHostAddress\fR ( TQ_UINT8 * ip6Addr )" -.br -.ti -1c -.BI "\fBQHostAddress\fR ( const Q_IPV6ADDR & ip6Addr )" -.br -.ti -1c -.BI "\fBQHostAddress\fR ( const QHostAddress & address )" -.br -.ti -1c -.BI "virtual \fB~QHostAddress\fR ()" -.br -.ti -1c -.BI "QHostAddress & \fBoperator=\fR ( const QHostAddress & address )" -.br -.ti -1c -.BI "void \fBsetAddress\fR ( TQ_UINT32 ip4Addr )" -.br -.ti -1c -.BI "void \fBsetAddress\fR ( TQ_UINT8 * ip6Addr )" -.br -.ti -1c -.BI "bool \fBsetAddress\fR ( const QString & address )" -.br -.ti -1c -.BI "bool isIp4Addr () const \fI(obsolete)\fR" -.br -.ti -1c -.BI "TQ_UINT32 ip4Addr () const \fI(obsolete)\fR" -.br -.ti -1c -.BI "bool \fBisIPv4Address\fR () const" -.br -.ti -1c -.BI "TQ_UINT32 \fBtoIPv4Address\fR () const" -.br -.ti -1c -.BI "bool \fBisIPv6Address\fR () const" -.br -.ti -1c -.BI "Q_IPV6ADDR \fBtoIPv6Address\fR () const" -.br -.ti -1c -.BI "QString \fBtoString\fR () const" -.br -.ti -1c -.BI "bool \fBoperator==\fR ( const QHostAddress & other ) const" -.br -.ti -1c -.BI "bool \fBisNull\fR () const" -.br -.in -1c -.SH DESCRIPTION -The QHostAddress class provides an IP address. -.PP -This class contains an IP address in a platform and protocol independent manner. It stores both IPv4 and IPv6 addresses in a way that you can easily access on any platform. -.PP -QHostAddress is normally used with the classes QSocket, QServerSocket and QSocketDevice to set up a server or to connect to a host. -.PP -Host addresses may be set with setAddress() and retrieved with ip4Addr() or toString(). -.PP -See also QSocket, QServerSocket, QSocketDevice, and Input/Output and Networking. -.SH MEMBER FUNCTION DOCUMENTATION -.SH "QHostAddress::QHostAddress ()" -Creates a host address object with the IP address 0.0.0.0. -.SH "QHostAddress::QHostAddress ( TQ_UINT32 ip4Addr )" -Creates a host address object for the IPv4 address \fIip4Addr\fR. -.SH "QHostAddress::QHostAddress ( TQ_UINT8 * ip6Addr )" -Creates a host address object with the specified IPv6 address. -.PP -\fIip6Addr\fR must be a 16 byte array in network byte order (high-order byte first). -.SH "QHostAddress::QHostAddress ( const Q_IPV6ADDR & ip6Addr )" -Creates a host address object with the IPv6 address, \fIip6Addr\fR. -.SH "QHostAddress::QHostAddress ( const QHostAddress & address )" -Creates a copy of \fIaddress\fR. -.SH "QHostAddress::~QHostAddress ()\fC [virtual]\fR" -Destroys the host address object. -.SH "TQ_UINT32 QHostAddress::ip4Addr () const" -\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. -.PP -Use toIPv4Address() instead. -.SH "bool QHostAddress::isIPv4Address () const" -Returns TRUE if the host address represents an IPv4 address; otherwise returns FALSE. -.SH "bool QHostAddress::isIPv6Address () const" -Returns TRUE if the host address represents an IPv6 address; otherwise returns FALSE. -.SH "bool QHostAddress::isIp4Addr () const" -\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. -.PP -Use isIPv4Address() instead. -.SH "bool QHostAddress::isNull () const" -Returns TRUE if this host address is null (INADDR_ANY or in6addr_any). The default constructor creates a null address, and that address isn't valid for any particular host or interface. -.SH "QHostAddress & QHostAddress::operator= ( const QHostAddress & address )" -Assigns another host address object \fIaddress\fR to this object and returns a reference to this object. -.SH "bool QHostAddress::operator== ( const QHostAddress & other ) const" -Returns TRUE if this host address is the same as \fIother\fR; otherwise returns FALSE. -.SH "void QHostAddress::setAddress ( TQ_UINT32 ip4Addr )" -Set the IPv4 address specified by \fIip4Addr\fR. -.SH "void QHostAddress::setAddress ( TQ_UINT8 * ip6Addr )" -This is an overloaded member function, provided for convenience. It behaves essentially like the above function. -.PP -Set the IPv6 address specified by \fIip6Addr\fR. -.PP -\fIip6Addr\fR must be a 16 byte array in network byte order (high-order byte first). -.SH "bool QHostAddress::setAddress ( const QString & address )" -This is an overloaded member function, provided for convenience. It behaves essentially like the above function. -.PP -Sets the IPv4 or IPv6 address specified by the string representation \fIaddress\fR (e.g. "127.0.0.1"). Returns TRUE and sets the address if the address was successfully parsed; otherwise returns FALSE and leaves the address unchanged. -.SH "TQ_UINT32 QHostAddress::toIPv4Address () const" -Returns the IPv4 address as a number. -.PP -For example, if the address is 127.0.0.1, the returned value is 2130706433 (i.e. 0x7f000001). -.PP -This value is only valid when isIp4Addr() returns TRUE. -.PP -See also toString(). -.SH "Q_IPV6ADDR QHostAddress::toIPv6Address () const" -Returns the IPv6 address as a Q_IPV6ADDR structure. The structure consists of 16 unsigned characters. -.PP -.nf -.br - Q_IPV6ADDR addr = hostAddr.ip6Addr(); -.br - // addr.c[] contains 16 unsigned characters -.br -.br - for (int i = 0; i < 16; ++i) { -.br - // process addr.c[i] -.br - } -.br -.fi -.PP -This value is only valid when isIPv6Address() returns TRUE. -.PP -See also toString(). -.SH "QString QHostAddress::toString () const" -Returns the address as a string. -.PP -For example, if the address is the IPv4 address 127.0.0.1, the returned string is "127.0.0.1". -.PP -See also ip4Addr(). - -.SH "SEE ALSO" -.BR http://doc.trolltech.com/ntqhostaddress.html -.BR http://www.trolltech.com/faq/tech.html -.SH COPYRIGHT -Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the -license file included in the distribution for a complete license -statement. -.SH AUTHOR -Generated automatically from the source code. -.SH BUGS -If you find a bug in Qt, please report it as described in -.BR http://doc.trolltech.com/bughowto.html . -Good bug reports help us to help you. Thank you. -.P -The definitive Qt documentation is provided in HTML format; it is -located at $QTDIR/doc/html and can be read using Qt Assistant or with -a web browser. This man page is provided as a convenience for those -users who prefer man pages, although this format is not officially -supported by Trolltech. -.P -If you find errors in this manual page, please report them to -.BR [email protected] . -Please include the name of the manual page (qhostaddress.3qt) and the Qt -version (3.3.8). |