QDnsServiceRecord 类存储有关 DNS SRV 记录的信息。 更多...
头: | #include <QDnsServiceRecord> |
CMake: |
find_package(Qt6 REQUIRED COMPONENTS Network)
target_link_libraries(mytarget PRIVATE Qt6::Network) |
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= (const QDnsServiceRecord & other ) |
When performing a lookup on a service, zero or more records will be returned. Each record is represented by a QDnsServiceRecord instance.
字段含义的定义在 RFC 2782 .
另请参阅 QDnsLookup .
Constructs an empty service record object.
构造副本为 other .
Destroys a service record.
返回此记录的名称。
Returns the port on the target host for this service record.
Returns the priority for this service record.
A client must attempt to contact the target host with the lowest-numbered priority.
Swaps this service record instance with other 。此函数非常快且从不失败。
Returns the domain name of the target host for this service record.
返回此记录有效的持续时间 (以秒为单位)。
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.
赋值数据源于 other 对象到此记录对象,并返回它的引用。