QDnsServiceRecord 类

QDnsServiceRecord class stores information about a DNS SRV record. 更多...

头: #include <QDnsServiceRecord>
qmake: QT += network

公共函数

QDnsServiceRecord ()
QDnsServiceRecord (const QDnsServiceRecord & other )
~QDnsServiceRecord ()
QString name () const
quint16 port () const
quint16 priority () const
void swap (QDnsServiceRecord & other )
QString target () const
quint32 timeToLive () const
quint16 weight () const
QDnsServiceRecord & operator= (QDnsServiceRecord && other )
QDnsServiceRecord & operator= (const QDnsServiceRecord & other )

详细描述

QDnsServiceRecord class stores information about a DNS SRV record.

When performing a lookup on a service, zero or more records will be returned. Each record is represented by a QDnsServiceRecord 实例。

字段含义的定义在 RFC 2782 .

另请参阅 QDnsLookup .

成员函数文档编制

QDnsServiceRecord:: QDnsServiceRecord ()

Constructs an empty service record object.

QDnsServiceRecord:: QDnsServiceRecord (const QDnsServiceRecord & other )

构造副本为 other .

QDnsServiceRecord:: ~QDnsServiceRecord ()

Destroys a service record.

QString QDnsServiceRecord:: name () const

返回此记录的名称。

quint16 QDnsServiceRecord:: port () const

Returns the port on the target host for this service record.

quint16 QDnsServiceRecord:: priority () const

Returns the priority for this service record.

A client must attempt to contact the target host with the lowest-numbered priority.

void QDnsServiceRecord:: swap ( QDnsServiceRecord & other )

Swaps this service record instance with other 。此函数非常快,且从不失败。

QString QDnsServiceRecord:: target () const

Returns the domain name of the target host for this service record.

quint32 QDnsServiceRecord:: timeToLive () const

返回此记录有效的持续时间 (以秒为单位)。

quint16 QDnsServiceRecord:: weight () const

Returns the weight for this service record.

The weight field specifies a relative weight for entries with the same priority. Entries with higher weights should be selected with a higher probability.

QDnsServiceRecord &QDnsServiceRecord:: operator= ( QDnsServiceRecord && other )

移动赋值运算符。

QDnsServiceRecord &QDnsServiceRecord:: operator= (const QDnsServiceRecord & other )

赋值数据源于 other 对象到此记录对象,并返回它的引用。