Home | History | Annotate | Download | only in DLL.NET

Lines Matching refs:record

95 				* record's name is to be unique on the network (e.g. SRV records).
266 RecordRef * record
420 * TXT Record Construction Functions
425 * A typical calling sequence for TXT record construction is something like:
439 * Note: Represents a DNS-SD TXT record.
480 * Keys may exist in four states with respect to a given TXT record:
483 * - Present with empty value ("key=" appears in TXT record)
484 * - Present with non-empty value ("key=value" appears in TXT record)
569 * TXT Record Parsing Functions
574 * A typical calling sequence for TXT record parsing is something like:
576 * Receive TXT record data in DNSServiceResolve() callback
587 * Allows you to determine if a given TXT Record contains a specified key.
589 * txtRecord: Pointer to the received TXT Record bytes.
593 * return value: Returns 1 if the TXT Record contains the specified key.
608 * Allows you to retrieve the value for a given key from a TXT Record.
610 * txtRecord: Pointer to the received TXT Record bytes.
614 * return value: Returns NULL if the key does not exist in this TXT record,
633 * Returns the number of keys stored in the TXT Record. The count
636 * txtRecord: Pointer to the received TXT Record bytes.
638 * return value: Returns the total number of keys in the TXT Record.
652 * a TXT Record. Legal index values range from zero to TXTRecordGetCount()-1.
653 * It's also possible to iterate through keys in a TXT record by simply
662 * txtRecord: Pointer to the received TXT Record bytes.
664 * index: An index into the TXT Record.
671 * return value: Record bytes that holds the value data.
836 * create an address record for that host - the application is responsible
837 * for ensuring that the appropriate address record exists, or creating it
845 * txtRecord: The txt record rdata. May be NULL. Note that a non-NULL txtRecord
846 * MUST be a properly formatted DNS TXT record, i.e. <length byte> <data>
878 * Add a record to a registered service. The name of the record will be the same as the
880 * The record can later be updated or deregistered by passing the RecordRef initialized
895 * rrtype: The type of the record (e.g. TXT, SRV, etc), as defined in nameser.h.
897 * rdata: The raw rdata to be contained in the added resource record.
899 * ttl: The time to live of the resource record, in seconds.
917 * Update a registered resource record. The record must either be:
918 * - The primary txt record of a service registered via Register()
919 * - A record added to a registered service via AddRecord()
920 * - An individual record registered by RegisterRecord()
929 * service's primary txt record.
933 * rdata: The new rdata to be contained in the updated resource record.
935 * ttl: The time to live of the updated resource record, in seconds.
944 RecordRef * record,
952 * Remove a record previously added to a service record set via AddRecord(), or deregister
953 * an record registered individually via RegisterRecord().
958 * record being removed was registered via AddRecord()) or by
959 * CreateConnection() (if the record being removed was registered via
975 RecordRef * record,
1065 * txt record.
1067 * Note: Applications should NOT use Resolve() solely for txt record monitoring - use
1073 record and
1074 * a single TXT record (the TXT record may be empty.) To resolve non-standard services with multiple
1102 * txtRecord: The service's primary txt record, in standard txt record format.
1165 * Register an individual resource record on a connected ServiceRef.
1194 RecordRef * record
1233 * interfaceIndex: If non-zero, specifies the interface on which to register the record
1235 * family of calls.) Passing 0 causes the record to be registered on all interfaces.
1236 * Passing -1 causes the record to only be visible on the local host.
1238 * fullname: The full domain name of the resource record.
1240 * rrtype: The numerical type of the resource record (e.g. PTR, SRV, etc), as defined
1243 * rrclass: The class of the resource record, as defined in nameser.h (usually 1 for the
1246 * rdata: A pointer to the raw rdata, as it is to appear in the DNS record.
1248 * ttl: The time to live of the resource record, in seconds.
1272 * Query for an arbitrary DNS record.
1290 * fullname: The resource record's full domain name.
1292 * rrtype: The resource record's type (e.g. PTR, SRV, etc) as defined in nameser.h.
1294 * rrclass: The class of the resource record, as defined in nameser.h (usually 1).
1296 * rdata: The raw rdata of the resource record.
1298 * ttl: The resource record's time to live, in seconds.
1331 * fullname: The full domain name of the resource record to be queried for.
1333 * rrtype: The numerical type of the resource record to be queried for (e.g. PTR, SRV, etc)
1336 * rrclass: The class of the resource record, as defined in nameser.h
1362 * Instruct the daemon to verify the validity of a resource record that appears to
1364 * Causes the record to be flushed from the daemon's cache (as well as all other
1365 * daemons' caches on the network) if the record is determined to be invalid.
1371 * fullname: The resource record's full domain name.
1373 * rrtype: The resource record's type (e.g. PTR, SRV, etc) as defined in nameser.h.
1375 * rrclass: The class of the resource record, as defined in nameser.h (usually 1).
1377 * rdata: The raw rdata of the resource record.