ObjFW  Check-in [e2ab3299ed]

Overview
Comment:OFSRVDNSResourceRecord: Minor documentation fix
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 1.0
Files: files | file ages | folders
SHA3-256: e2ab3299edc5c81829a0e8f21036f4a3460aa720f1d3a1b5fc110d7da1c18a49
User & Date: js on 2024-01-15 20:36:30
Other Links: branch diff | manifest | tags
Context
2024-01-15
20:37
Add new signing key check-in: 4ee9d9130f user: js tags: 1.0
20:36
OFSRVDNSResourceRecord: Minor documentation fix check-in: e2ab3299ed user: js tags: 1.0
20:16
Set version to 1.0.6 check-in: 9a6244cd23 user: js tags: 1.0, 1.0.6-release
Changes

Modified src/OFDNSResourceRecord.h from [967b25e8fc] to [82d2d9c717].

557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
- (instancetype)initWithName: (OFString *)name
		    DNSClass: (OFDNSClass)DNSClass
		  recordType: (OFDNSRecordType)recordType
			 TTL: (uint32_t)TTL OF_UNAVAILABLE;

/**
 * @brief Initializes an already allocated OFSRVDNSResourceRecord with the
 *	  specified name, class, preference, mail exchange and time to live.
 *
 * @param name The name for the resource record
 * @param priority The priority for the resource record
 * @param weight The weight for the resource record
 * @param target The target for the resource record
 * @param port The port on the target for the resource record
 * @param TTL The time to live for the resource record







|







557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
- (instancetype)initWithName: (OFString *)name
		    DNSClass: (OFDNSClass)DNSClass
		  recordType: (OFDNSRecordType)recordType
			 TTL: (uint32_t)TTL OF_UNAVAILABLE;

/**
 * @brief Initializes an already allocated OFSRVDNSResourceRecord with the
 *	  specified name, priority, weight, target, port and time to live.
 *
 * @param name The name for the resource record
 * @param priority The priority for the resource record
 * @param weight The weight for the resource record
 * @param target The target for the resource record
 * @param port The port on the target for the resource record
 * @param TTL The time to live for the resource record