Searched refs:fqdn (Results 1 - 25 of 33) sorted by relevance

12

/external/smack/src/org/jivesoftware/smack/util/dns/
H A DHostAddress.java19 private String fqdn; field in class:HostAddress
26 * @param fqdn Fully qualified domain name.
27 * @throws IllegalArgumentException If the fqdn is null.
29 public HostAddress(String fqdn) { argument
30 if (fqdn == null)
32 if (fqdn.charAt(fqdn.length() - 1) == '.') {
33 this.fqdn = fqdn.substring(0, fqdn
49 HostAddress(String fqdn, int port) argument
[all...]
H A DSRVRecord.java32 * @param fqdn Fully qualified domain name
36 * @throws IllegalArgumentException fqdn is null or any other field is not in valid range (0-65535).
38 public SRVRecord(String fqdn, int port, int priority, int weight) { argument
39 super(fqdn, port);
/external/mdnsresponder/mDNSShared/
H A Duds_daemon.h68 extern void external_start_resolving_service(const domainname *const fqdn);
69 extern void external_stop_resolving_service(const domainname *const fqdn);
H A Ddnsextd.c3110 void mDNS_AddDynDNSHostName(mDNS *m, const domainname *fqdn, mDNSRecordCallback *StatusCallback, const void *StatusContext) argument
3111 { ( void ) m; ( void ) fqdn; ( void ) StatusCallback; ( void ) StatusContext; }
3124 void mDNS_RemoveDynDNSHostName(mDNS *m, const domainname *fqdn) { ( void ) m; ( void ) fqdn; } argument
H A Duds_daemon.c2291 domainname fqdn; local
2315 if (build_domainname_from_strings(&fqdn, name, regtype, domain) < 0)
2323 AssignDomainName(&request->u.resolve.qsrv.qname, &fqdn);
2342 AssignDomainName(&request->u.resolve.qtxt.qname, &fqdn);
2364 if (!AuthorizedDomain(request, &fqdn, AutoBrowseDomains)) return(mStatus_NoError);
2378 if (wasP2P || (!InterfaceID && IsLocalDomain(&fqdn) && (request->flags & kDNSServiceFlagsIncludeP2P)))
2382 external_start_resolving_service(&fqdn);
/external/wpa_supplicant_8/hs20/client/
H A Dosu_client.c81 static int valid_fqdn(const char *fqdn) argument
86 if (strchr(fqdn, '.') == 0 || strlen(fqdn) > 255)
88 for (pos = fqdn; *pos; pos++) {
183 const char *fqdn)
191 wpa_printf(MSG_INFO, "PPS for certificate credential - fqdn=%s", fqdn);
226 os_snprintf(buf, sizeof(buf), "SP/%s/client-ca.pem", fqdn);
234 os_snprintf(buf, sizeof(buf), "SP/%s/client-cert.pem", fqdn);
251 os_snprintf(buf, sizeof(buf), "SP/%s/client-key.pem", fqdn);
182 process_est_cert(struct hs20_osu_client *ctx, xml_node_t *cert, const char *fqdn) argument
478 server_dnsname_suffix_match(struct hs20_osu_client *ctx, const char *fqdn) argument
517 char *fqdn, *pos; local
728 remove_sp_creds(struct hs20_osu_client *ctx, const char *fqdn) argument
1218 char *fqdn = NULL; local
1456 set_pps_cred_digital_cert(struct hs20_osu_client *ctx, int id, xml_node_t *node, const char *fqdn) argument
1487 set_pps_cred_realm(struct hs20_osu_client *ctx, int id, xml_node_t *node, const char *fqdn, int sim) argument
1621 set_pps_cred_credential(struct hs20_osu_client *ctx, int id, xml_node_t *node, const char *fqdn) argument
1656 set_pps_credential(struct hs20_osu_client *ctx, int id, xml_node_t *cred, const char *fqdn) argument
1686 set_pps(struct hs20_osu_client *ctx, xml_node_t *pps, const char *fqdn) argument
1745 const char *fqdn; local
1778 char *fqdn = NULL; local
[all...]
H A Doma_dm_client.c505 if (ctx->fqdn == NULL)
507 fqdn_len = os_strlen(ctx->fqdn);
508 if (os_strncasecmp(pos, ctx->fqdn, fqdn_len) != 0 ||
511 ctx->fqdn);
519 ctx->fqdn);
722 if (ctx->fqdn == NULL) {
726 fqdn_len = os_strlen(ctx->fqdn);
727 if (os_strncasecmp(pos, ctx->fqdn, fqdn_len) != 0 ||
730 ctx->fqdn);
739 ctx->fqdn);
[all...]
H A Dosu_client.h38 char *fqdn; member in struct:hs20_osu_client
H A Dspp_client.c228 if (ctx->fqdn == NULL) {
234 fqdn_len = os_strlen(ctx->fqdn);
235 if (os_strncasecmp(pos, ctx->fqdn, fqdn_len) != 0 ||
238 ctx->fqdn);
247 ctx->fqdn);
H A Dest.c602 "SP/%s/client-cert.pem", ctx->fqdn);
651 "SP/%s/client-cert.pem", ctx->fqdn);
654 "SP/%s/client-key.pem", ctx->fqdn);
/external/iputils/ninfod/
H A Dninfod_name.c155 int fqdn)
181 if (fqdn < 0)
183 fqdn = 1;
201 if (buflen < i + 1 + !(fqdn > 0))
204 if (!(fqdn > 0))
153 encode_dnsname(const char *name, char *buf, size_t buflen, int fqdn) argument
/external/dnsmasq/src/
H A Dlease.c253 if (lease->fqdn)
254 cache_add_dhcp_entry(lease->fqdn, &lease->addr, lease->expires);
422 /* If we know the fqdn, pass that. The helper will derive the
425 if (lease->fqdn)
427 lease->old_hostname = lease->fqdn;
433 lease->hostname = lease->fqdn = NULL;
474 if (!new_fqdn || !lease_tmp->fqdn || !hostname_isequal(lease_tmp->fqdn, new_fqdn) )
499 lease->fqdn = new_fqdn;
594 lease->fqdn
[all...]
H A Dcache.c824 int fqdn, nomem; local
830 fqdn = !!strchr(token, '.');
835 if ((daemon->options & OPT_EXPAND) && domain_suffix && !fqdn &&
H A Ddnsmasq.h409 char *hostname, *fqdn; /* name from client-hostname option or config */ member in struct:dhcp_lease
/external/dhcpcd/
H A Dif-options.h105 int fqdn; member in struct:if_options
H A Dif-options.c89 {"fqdn", optional_argument, NULL, 'F'},
562 ifo->fqdn = FQDN_BOTH;
566 ifo->fqdn = FQDN_NONE;
568 ifo->fqdn = FQDN_PTR;
570 ifo->fqdn = FQDN_BOTH;
572 ifo->fqdn = FQDN_DISABLE;
H A Ddhcp.c1059 if (ifo->fqdn != FQDN_DISABLE && ifo->hostname[0]) {
1074 *p++ = (ifo->fqdn & 0x09) | 0x04;
/external/iputils/
H A Dping6.c271 NIQUERY_OPTION("fqdn", 0, 0, niquery_option_name_handler),
283 NIQUERY_OPTION("subject-fqdn", 1, -1, niquery_option_subject_name_handler),
514 int dots, fqdn = niquery_options[index].data; local
570 if (fqdn == 0) {
572 fqdn = dots ? 1 : -1;
576 plus non-fqdn indicator. */
607 if (fqdn < 0)
614 ni_subject_len = n + (fqdn < 0);
642 "\t\tsubject-ipv6=addr,subject-ipv4=addr,subject-name=name,subject-fqdn=name,\n"
1470 int fqdn local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dconfig.h244 char fqdn[128]; member in struct:wpa_cred::roaming_partner
H A Dinterworking.c2183 wpa_printf(MSG_DEBUG, "Interworking: Comparing roaming_partner info fqdn='%s' exact_match=%d priority=%u country='%s'",
2184 partner->fqdn, partner->exact_match, partner->priority,
2189 if (!domain_name_list_contains(domain_names, partner->fqdn,
/external/mdnsresponder/mDNSPosix/
H A DNetMonitor.c383 mDNSexport mDNSBool ExtractServiceType(const domainname *const fqdn, domainname *const srvtype) argument
386 const mDNSu8 *src = fqdn->c;
406 mDNSlocal void recordstat(HostEntry *entry, const domainname *fqdn, int op, mDNSu16 rrtype) argument
417 if (!ExtractServiceType(fqdn, &srvtype)) return;
H A DmDNSPosix.c451 mDNSexport void mDNSPlatformSetDNSConfig(mDNS *const m, mDNSBool setservers, mDNSBool setsearch, domainname *const fqdn, DNameListElem **RegDomains, DNameListElem **BrowseDomains) argument
455 (void) fqdn;
/external/mdnsresponder/mDNSCore/
H A DuDNS.c1430 int x, hostcount = CountLabels(&hi->fqdn);
1432 if (SameDomainName(SkipLeadingLabels(rr->resrec.name, srvcount - x), SkipLeadingLabels(&hi->fqdn, hostcount - x)))
1436 if (besthi) return(&besthi->fqdn);
2105 AssignDomainName(&h->arv4.namestorage, &h->fqdn);
2131 AssignDomainName(&h->arv6.namestorage, &h->fqdn);
2285 mDNSexport void mDNS_AddDynDNSHostName(mDNS *m, const domainname *fqdn, mDNSRecordCallback *StatusCallback, const void *StatusContext) argument
2289 LogInfo("mDNS_AddDynDNSHostName %##s", fqdn);
2291 while (*ptr && !SameDomainName(fqdn, &(*ptr)->fqdn)) ptr = &(*ptr)->next;
2292 if (*ptr) { LogMsg("DynDNSHostName %##s already in list", fqdn
2308 mDNS_RemoveDynDNSHostName(mDNS *m, const domainname *fqdn) argument
[all...]
H A DmDNSEmbeddedAPI.h1361 domainname fqdn; member in struct:HostnameInfo
2343 extern mDNSu8 *ConstructServiceName(domainname *const fqdn, const domainlabel *name, const domainname *type, const domainname *const domain);
2344 extern mDNSBool DeconstructServiceName(const domainname *const fqdn, domainlabel *const name, domainname *const type, domainname *const domain);
2468 extern void mDNS_AddDynDNSHostName(mDNS *m, const domainname *fqdn, mDNSRecordCallback *StatusCallback, const void *StatusContext);
2469 extern void mDNS_RemoveDynDNSHostName(mDNS *m, const domainname *fqdn);
2643 extern void mDNSPlatformSetDNSConfig(mDNS *const m, mDNSBool setservers, mDNSBool setsearch, domainname *const fqdn, DNameListElem **RegDomains, DNameListElem **BrowseDomains);
/external/ipsec-tools/src/racoon/
H A Dcftoken.l548 fqdn { YYD; yylval.num = IDTYPE_FQDN; return(IDENTIFIERTYPE); }

Completed in 2520 milliseconds

12