| /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));
|
| dns.h | 273 #define dns_lookup(name, type, rflags, list, fqdn, why) \ 274 dns_lookup_x((name), (type), (rflags), (list), (fqdn), (why), (int *) 0, \ 276 #define dns_lookup_r(name, type, rflags, list, fqdn, why, rcode) \ 277 dns_lookup_x((name), (type), (rflags), (list), (fqdn), (why), (rcode), \ 279 #define dns_lookup_l(name, rflags, list, fqdn, why, lflags, ...) \ 280 dns_lookup_rl((name), (rflags), (list), (fqdn), (why), (int *) 0, \ 282 #define dns_lookup_v(name, rflags, list, fqdn, why, lflags, ltype) \ 283 dns_lookup_rv((name), (rflags), (list), (fqdn), (why), (int *) 0, \
|
| dns_lookup.c | 11 /* int dns_lookup(name, type, rflags, list, fqdn, why) 16 /* VSTRING *fqdn; 19 /* int dns_lookup_l(name, rflags, list, fqdn, why, lflags, ltype, ...) 23 /* VSTRING *fqdn; 28 /* int dns_lookup_v(name, rflags, list, fqdn, why, lflags, ltype) 32 /* VSTRING *fqdn; 41 /* int dns_lookup_r(name, type, rflags, list, fqdn, why, rcode) 46 /* VSTRING *fqdn; 50 /* int dns_lookup_rl(name, rflags, list, fqdn, why, rcode, lflags, 55 /* VSTRING *fqdn; [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/nsec3/ |
| tests_nsec3_change.py | 43 query = isctest.query.create(fqdn, dns.rdatatype.SOA) 47 dns.name.from_text(fqdn), 56 fqdn = f"{zone}."
|
| tests_nsec3_restart.py | 40 fqdn = f"{zone}." 55 match = f"{fqdn} {minimum} IN NSEC3PARAM 1 0 {iterations}" 57 query = isctest.query.create(fqdn, dns.rdatatype.NSEC3PARAM)
|
| tests_nsec3_retransfer.py | 44 fqdn = f"{zone}." 56 match = f"{fqdn} {minimum} IN NSEC3PARAM 1 0 {iterations}" 71 query = isctest.query.create(fqdn, dns.rdatatype.NSEC3PARAM) 77 query = isctest.query.create(f"nosuchname.{fqdn}", dns.rdatatype.A)
|
| common.py | 109 fqdn = f"{zone}." 135 query = isctest.query.create(fqdn, dns.rdatatype.NSEC3PARAM) 139 query = isctest.query.create(f"nosuchname.{fqdn}", dns.rdatatype.A) 153 match = f"{fqdn} {minimum} IN NSEC3PARAM 1 0 {iterations}"
|
| /src/external/mpl/bind/dist/bin/tests/system/checkds/ |
| tests_checkds.py | 60 labelcount = zone.count(".") # zone is specified as FQDN 147 fqdn = f"{zone}." 150 response = do_query(server, fqdn, "NSEC") 151 assert has_signed_apex_nsec(fqdn, response) 154 transfer = do_query(server, fqdn, "AXFR", tcp=True) 155 assert verify_zone(fqdn, transfer) 159 fqdn = f"{zone}." 169 state = read_statefile(server, fqdn)
|
| /src/external/bsd/wpa/dist/hs20/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...] |
| oma_dm_client.c | 519 if (ctx->fqdn == NULL) 521 fqdn_len = os_strlen(ctx->fqdn); 522 if (os_strncasecmp(pos, ctx->fqdn, fqdn_len) != 0 || 525 ctx->fqdn); 533 ctx->fqdn); 745 if (ctx->fqdn == NULL) { 749 fqdn_len = os_strlen(ctx->fqdn); 750 if (os_strncasecmp(pos, ctx->fqdn, fqdn_len) != 0 || 753 ctx->fqdn); 762 ctx->fqdn); [all...] |
| osu_client.h | 38 char *fqdn; member in struct:hs20_osu_client
|
| spp_client.c | 235 if (ctx->fqdn == NULL) { 236 wpa_printf(MSG_INFO, "FQDN not known"); 241 fqdn_len = os_strlen(ctx->fqdn); 242 if (os_strncasecmp(pos, ctx->fqdn, fqdn_len) != 0 || 245 ctx->fqdn); 254 ctx->fqdn);
|
| est.c | 635 "SP/%s/client-cert.pem", ctx->fqdn); 683 "SP/%s/client-cert.pem", ctx->fqdn); 686 "SP/%s/client-key.pem", ctx->fqdn);
|
| /src/external/mpl/bind/dist/bin/tests/system/isctest/ |
| kasp.py | 838 fqdn = f"{zone}." 842 transfer = _query(server, fqdn, dns.rdatatype.AXFR, tsig=tsig) 844 isctest.log.debug(f"no response for {fqdn} AXFR from {server.ip}") 847 isctest.log.debug(f"{rcode} response for {fqdn} AXFR from {server.ip}") 889 fqdn, 912 expect = rf"IN RRSIG {rtype} {alg} (\d) (\d+) (\d+) (\d+) {key.tag} {fqdn}" 944 rrset, covers, fqdn, ksks, zsks, offline_ksk=False, zsk_missing=False, smooth=False 962 fqdn, 971 fqdn, 1124 def _query_rrset(server, fqdn, qtype, tsig=None) 1159 fqdn = f"{zone}." variable [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/ibm-public/postfix/dist/conf/ |
| postfix-tls-script | 492 set -- "$fqdn" "$@" 519 -subj "/CN=$fqdn" -days 36525 -out "${_c}" || { 531 set -- "$fqdn" "$@" 655 if [ -n "$1" ]; then fqdn=$1; return 0; fi 656 fqdn=`$postconf -xh myhostname` || return 1 657 case $fqdn in /*) fqdn=`cat "${fqdn}"` || return 1;; esac 1082 set -- "$fqdn" 1115 output_server_tlsa "${fqdn}" "${keyfile}" || exit [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/ibm-public/postfix/dist/src/xsasl/ |
| xsasl_cyrus_client.c | 117 #define SASL_CLIENT_NEW(srv, fqdn, lport, rport, prompt, secflags, pconn) \ 118 sasl_client_new(srv, fqdn, prompt, secflags, pconn) 129 #define SASL_CLIENT_NEW(srv, fqdn, lport, rport, prompt, secflags, pconn) \ 130 sasl_client_new(srv, fqdn, lport, rport, prompt, secflags, pconn)
|
| xsasl_cyrus_server.c | 119 #define SASL_SERVER_NEW(srv, fqdn, rlm, lport, rport, cb, secflags, pconn) \ 120 sasl_server_new(srv, fqdn, rlm, cb, secflags, pconn) 136 #define SASL_SERVER_NEW(srv, fqdn, rlm, lport, rport, cb, secflags, pconn) \ 137 sasl_server_new(srv, fqdn, rlm, lport, rport, cb, secflags, pconn)
|
| /src/external/apache2/mDNSResponder/dist/ServiceRegistration/ |
| state-machine.h | 72 #define BR_STATE_ANNOUNCE_NO_EVENTS_NAME(state_object, fqdn) \ 75 dns_name_print(fqdn, hostname, sizeof(hostname)); \
|
| /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/mpl/bind/dist/bin/tests/system/xfer/ |
| tests_xfer.py | 261 fqdn = name.derelativize(zone.origin).to_text() 269 assert fqdn == "." or ( 275 assert fqdn == "." 279 ), f"Unexpected RRset: {fqdn} {rdataset.ttl} IN {rtype} {rdata}" 423 fqdn = name.derelativize(zone.origin).to_text() 425 xfr_size += len(f"{fqdn} {rdataset}")
|
| /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/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
|