18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
*/
#import "OFDNSResourceRecord.h"
OF_ASSUME_NONNULL_BEGIN
/**
* @class OFSRVDNSResourceRecord \
* OFDNSResourceRecord.h ObjFW/OFDNSResourceRecord.h
*
* @brief A class representing an SRV DNS resource record.
*/
OF_SUBCLASSING_RESTRICTED
@interface OFSRVDNSResourceRecord: OFDNSResourceRecord
{
uint16_t _priority, _weight;
|
|
<
|
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
*/
#import "OFDNSResourceRecord.h"
OF_ASSUME_NONNULL_BEGIN
/**
* @class OFSRVDNSResourceRecord OFSRVDNSResourceRecord.h ObjFW/ObjFW.h
*
* @brief A class representing an SRV DNS resource record.
*/
OF_SUBCLASSING_RESTRICTED
@interface OFSRVDNSResourceRecord: OFDNSResourceRecord
{
uint16_t _priority, _weight;
|