Lines Matching refs:ttl
1061 … uint16_t rrtype, uint16_t rrclass, uint16_t rdlen, const void *rdata, uint32_t ttl, void *context) in qr_reply() argument
1081 (void)ttl; // Unused in qr_reply()
1195 …Address, uint32_t protocol, uint16_t privatePort, uint16_t publicPort, uint32_t ttl, void *context) in port_mapping_create_reply() argument
1211 …%-6d%s\n", ifIndex, addr, protocol, ntohs(privatePort), ntohs(publicPort), ttl, errorCode == kDNSS… in port_mapping_create_reply()
1217 …rType errorCode, const char *hostname, const struct sockaddr *address, uint32_t ttl, void *context) in addrinfo_reply() argument
1264 …printf("%s%9X%3d %-38s %-44s %d%s", op, flags, interfaceIndex, hostname, addr, ttl, enable_dnssec … in addrinfo_reply()
1735 uint32_t ttl = 0; in API_NULL_input_test() local
1746 …RecordRef, flags, interfaceIndex, fullname, rrtype, rrclass, rdlen, rdata, ttl, callBack, context)… in API_NULL_input_test()
1747 …ecordRef, flags, interfaceIndex, 0, rrtype, rrclass, rdlen, rdata, ttl, callBack, context)… in API_NULL_input_test()
1748 …ecordRef, flags, interfaceIndex, fullname, rrtype, rrclass, rdlen, 0, ttl, callBack, context)… in API_NULL_input_test()
1749 …ecordRef, flags, interfaceIndex, fullname, rrtype, rrclass, rdlen, rdata, ttl, 0, context)… in API_NULL_input_test()
1770 uint32_t ttl = 100; in API_NULL_input_test() local
1780 if ( (DNSServiceAddRecord( 0, &RecordRef, flags, rrtype, rdlen, rdata, ttl) == 0) in API_NULL_input_test()
1781 || (DNSServiceAddRecord(sdRef, 0, flags, rrtype, rdlen, rdata, ttl) == 0) in API_NULL_input_test()
1782 || (DNSServiceAddRecord(sdRef, &RecordRef, flags, rrtype, rdlen, 0, ttl) == 0) in API_NULL_input_test()
1791 … if (DNSServiceAddRecord(sdRef, &RecordRef, flags, rrtype, 0, 0, ttl) == kDNSServiceErr_BadParam) in API_NULL_input_test()
1799 if ( (DNSServiceUpdateRecord( 0, RecordRef, flags, rdlen, rdata, ttl) == 0) in API_NULL_input_test()
1800 || (DNSServiceUpdateRecord(sdRef, RecordRef, flags, rdlen, 0, ttl) == 0) in API_NULL_input_test()
1808 if (DNSServiceUpdateRecord(sdRef, RecordRef, flags, 0, 0, ttl) == kDNSServiceErr_BadParam) in API_NULL_input_test()
2203 …uint32_t ttl = (argc < opi+4) ? 0 : atoi(argv[opi+3]); // Optional desire… in main() local
2206 …rtMappingCreate(&client, 0, 0, prot, intp.NotAnInteger, extp.NotAnInteger, ttl, port_mapping_creat… in main()