The 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 ) |
The 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 .
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 對象到此記錄對象,並返迴它的引用。