| /src/external/ibm-public/postfix/dist/src/smtp/ |
| smtp_unalias.c | 70 VSTRING *fqdn; local 85 * Look up the fqdn. If none is found use the query name instead, so that 89 fqdn = vstring_alloc(10); 90 if (dns_lookup_l(name, smtp_unalias_flags, (DNS_RR **) 0, fqdn, 96 vstring_strcpy(fqdn, name); 97 htable_enter(cache, name, result = vstring_export(fqdn)); 107 const char *fqdn; local 112 fqdn = smtp_unalias_name(at + 1); 114 vstring_strcat(result, fqdn);
|
| /src/external/ibm-public/postfix/dist/src/dns/ |
| test_dns_lookup.c | 73 VSTRING *fqdn = vstring_alloc(100); local 120 switch (dns_lookup_rv(name, RES_USE_DNSSEC, &rr, fqdn, why, 126 vstream_printf("%s: fqdn: %s\n", name, vstring_str(fqdn));
|
| /src/external/bsd/wpa/dist/hs20/client/ |
| osu_client.h | 38 char *fqdn; member in struct:hs20_osu_client
|
| osu_client.c | 86 static int valid_fqdn(const char *fqdn) 91 if (strchr(fqdn, '.') == 0 || strlen(fqdn) > 255) 93 for (pos = fqdn; *pos; pos++) { 119 * to read files from SP, SP/<fqdn>, Cert and osu-info directories */ 219 const char *fqdn) 227 wpa_printf(MSG_INFO, "PPS for certificate credential - fqdn=%s", fqdn); 262 os_snprintf(buf, sizeof(buf), "SP/%s/client-ca.pem", fqdn); 270 os_snprintf(buf, sizeof(buf), "SP/%s/client-cert.pem", fqdn); 556 char *fqdn, *pos; local 1266 char *fqdn = NULL; local 1887 const char *fqdn; local 1920 char *fqdn = NULL; local [all...] |
| /src/usr.bin/rump_dhcpclient/ |
| if-options.h | 45 #define HOSTNAME_MAX_LEN 250 /* 255 - 3 (FQDN) - 2 (DNS enc) */ 103 int fqdn; member in struct:if_options
|
| /src/external/apache2/mDNSResponder/dist/mDNSShared/dns_objects/objs/ |
| dns_obj_domain_name.c | 131 // let fqdn = RRset's fully qualified domain name in canonical form 132 const dns_obj_domain_name_t fqdn = me; local 133 // let fqdn_labels = Label count of the fqdn above. 134 const size_t fqdn_labels = dns_obj_domain_name_get_label_count(fqdn); 142 // result = fqdn 147 // result = "*." | the rightmost rrsig_label labels of the fqdn 149 rightmost = dns_obj_domain_name_copy_parent_domain(fqdn, fqdn_labels - rrsig_labels, &err);
|
| /src/external/bsd/openldap/dist/libraries/libldap/ |
| util-int.c | 803 char *fqdn, hostbuf[MAXHOSTNAMELEN+1]; local 823 fqdn = LDAP_STRDUP( res->ai_canonname ); 825 fqdn = LDAP_STRDUP( name ); 834 fqdn = LDAP_STRDUP( name ); 836 fqdn = LDAP_STRDUP( hp->h_name ); 841 return fqdn;
|
| /src/external/mpl/bind/dist/bin/tests/system/isctest/ |
| kasp.py | 808 fqdn = f"{zone}." 812 transfer = _query(server, fqdn, dns.rdatatype.AXFR, tsig=tsig) 814 isctest.log.debug(f"no response for {fqdn} AXFR from {server.ip}") 817 isctest.log.debug(f"{rcode} response for {fqdn} AXFR from {server.ip}") 859 fqdn, 882 expect = rf"IN RRSIG {rtype} {alg} (\d) (\d+) (\d+) (\d+) {key.tag} {fqdn}" 914 rrset, covers, fqdn, ksks, zsks, offline_ksk=False, zsk_missing=False, smooth=False 932 fqdn, 941 fqdn, 1094 def _query_rrset(server, fqdn, qtype, tsig=None) 1129 fqdn = f"{zone}." variable [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/kadm5/ |
| ad.c | 436 const char *fqdn, 448 if (fqdn) 451 fqdn, pn); 596 const char *fqdn; local 624 fqdn = get_fqdn(context->context, entry->principal); 630 if (ad_find_entry(context, fqdn, p, NULL) == 0) { 653 if (fqdn) { 655 asprintf(&samname, "%s$", fqdn); 692 asprintf(&dn, "cn=%s, cn=Computers, %s", fqdn, CTX2BASE(context)); 724 dnsvals[0] = (char *)fqdn; 824 const char *fqdn; local [all...] |
| /src/external/mpl/dhcp/dist/server/ |
| ldap.c | 2185 char hfilter[1024], sfilter[1024], fqdn[257]; local 2235 *fqdn ='\0'; 2236 if(0 == get_host_entry(fqdn, sizeof(fqdn), NULL, 0)) 2238 if (_do_ldap_str2esc_filter_bv(fqdn, 0, &bv_o[1]) == NULL) 2240 log_error ("Cannot escape ldap filter value %s: %m", fqdn); 2247 // If we have fqdn and it isn't the same as nodename, use it in filter 2249 if ((*fqdn) && (strcmp(unme.nodename, fqdn))) {
|
| /src/external/bsd/dhcpcd/dist/src/ |
| if-options.h | 57 #define HOSTNAME_MAX_LEN 250 /* 255 - 3 (FQDN) - 2 (DNS enc) */ 275 uint8_t fqdn; member in struct:if_options
|
| dhcp6.c | 739 int fqdn; local 786 /* RFC 4704 Section 5 says we can only send FQDN for these 793 fqdn = ifo->fqdn; 796 fqdn = FQDN_DISABLE; 800 if (fqdn == FQDN_DISABLE && ifo->options & DHCPCD_HOSTNAME) { 801 /* We're sending the DHCPv4 hostname option, so send FQDN as 802 * DHCPv6 has no FQDN option and DHCPv4 must not send 803 * hostname and FQDN according to RFC4702 */ 804 fqdn = FQDN_BOTH [all...] |
| /src/sys/netinet6/ |
| icmp6.c | 746 enum { WRU, FQDN } mode; 754 mode = FQDN; 758 if (mode == FQDN) { 1228 struct ni_reply_fqdn *fqdn; local 1351 * - we are not sure if the node has FQDN as 1418 * as an FQDN query for backward compatibility. 1468 /* supports NOOP, SUPTYPES, FQDN, and NODEADDR */ 1475 fqdn = (struct ni_reply_fqdn *)(mtod(n, char *) + 1478 fqdn->ni_fqdn_ttl = 0; /* ditto. */ 1480 * XXX do we really have FQDN in variable "hostname" [all...] |
| /src/external/bsd/wpa/dist/wpa_supplicant/ |
| config.h | 232 * If set, this FQDN is used as a suffix match requirement for the AAA 248 * domain - Home service provider FQDN(s) 360 char fqdn[128]; member in struct:wpa_cred::roaming_partner 370 * provisioning_sp - FQDN of the SP that provisioned the credential
|
| /src/external/apache2/mDNSResponder/dist/mDNSShared/ |
| uds_daemon.c | 4241 domainname fqdn; member in struct:__anon6173 4263 if ((request->interfaceIndex != kDNSServiceInterfaceIndexLocalOnly) && IsLocalDomain(¶ms->fqdn)) 4271 if (callExternalHelpers(params->InterfaceID, ¶ms->fqdn, request->flags)) 4275 external_start_resolving_service(params->InterfaceID, ¶ms->fqdn, request->flags, request->process_id); 4734 if (build_domainname_from_strings(¶ms.fqdn, name, params.regtype, domain) < 0) 4744 AssignDomainName(&resolve->qsrv.qname, ¶ms.fqdn); 4764 AssignDomainName(&resolve->qtxt.qname, ¶ms.fqdn); 4787 if (!AuthorizedDomain(request, &fqdn, AutoBrowseDomains)) return(mStatus_NoError); 4802 mdns_signed_browse_result_contains(browseResult, params.fqdn.c, interfaceIndex))
|
| /src/external/apache2/mDNSResponder/dist/mDNSCore/ |
| mDNSEmbeddedAPI.h | 1688 domainname fqdn; member in struct:HostnameInfo 2497 domainname FQDN; 3019 extern mDNSu8 *ConstructServiceName(domainname *const fqdn, const domainlabel *name, const domainname *type, const domainname *const domain); 3020 extern mDNSBool DeconstructServiceName(const domainname *const fqdn, domainlabel *const name, domainname *const type, domainname *const domain); 3156 extern void mDNS_AddDynDNSHostName(mDNS *m, const domainname *fqdn, mDNSRecordCallback *StatusCallback, const void *StatusContext); 3157 extern void mDNS_RemoveDynDNSHostName(mDNS *m, const domainname *fqdn); 3416 extern mDNSBool mDNSPlatformSetDNSConfig(mDNSBool setservers, mDNSBool setsearch, domainname *const fqdn, DNameListElem **RegDomains,
|
| /src/external/apache2/mDNSResponder/dist/Clients/dnssdutil/ |
| dnssdutil.c | 14245 // Find the name's longest subname (more accurately, its longest sub-FQDN) in the name compression list. 18551 uint8_t * recordName; // FQDN of collider's record (same as test service's records). (malloced) 24529 char * serviceFQDN; // Service's FQDN, i.e., name of its SRV and TXT records. 24954 // Create SRV and TXT record name FQDN. 27416 // Since this is a GAI for a single-label instead of a FQDN, to make sure that appropriate search domain 27525 // Since this is a GAI for a PQDN instead of a FQDN, and it doesn't depend on a search domain, to make sure that no 27564 // Since this is a GAI for a single-label instead of a FQDN, to make sure that appropriate search domain 27804 // Since this is a GAI for a PQDN instead of a FQDN, and it depends on a search domain, to make sure that 28020 // Since this is a GAI for a single-label PQDN instead of a FQDN, and it depends on a search domain, to make sure 37948 char * fqdn; \/\/ Fully qualified domain name of service instance (for logging\/debugging). member in struct:SBServiceInstance [all...] |