HomeSort by relevance Sort by last modified time
    Searched refs:fqdn (Results 1 - 25 of 28) sorted by null

1 2

  /external/smack/src/org/jivesoftware/smack/util/dns/
HostAddress.java 19 private String fqdn; field in class:HostAddress
24 * Creates a new HostAddress with the given FQDN. The port will be set to the default XMPP client port: 5222
26 * @param fqdn Fully qualified domain name.
27 * @throws IllegalArgumentException If the fqdn is null.
29 public HostAddress(String fqdn) {
30 if (fqdn == null)
31 throw new IllegalArgumentException("FQDN is null");
32 if (fqdn.charAt(fqdn.length() - 1) == '.') {
33 this.fqdn = fqdn.substring(0, fqdn.length() - 1)
    [all...]
SRVRecord.java 32 * @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) {
39 super(fqdn, port);
  /external/mdnsresponder/mDNSShared/
uds_daemon.h 68 extern void external_start_resolving_service(const domainname *const fqdn);
69 extern void external_stop_resolving_service(const domainname *const fqdn);
dnsextd.c     [all...]
uds_daemon.c 2291 domainname fqdn; local
    [all...]
  /external/iputils/ninfod/
ninfod_name.c 155 int fqdn)
181 if (fqdn < 0)
183 fqdn = 1;
201 if (buflen < i + 1 + !(fqdn > 0))
204 if (!(fqdn > 0))
228 break; /* FQDN */
237 done = 1; /* FQDN */
  /external/dnsmasq/src/
lease.c 253 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;
469 /* Depending on mode, we check either unqualified name or FQDN. */
474 if (!new_fqdn || !lease_tmp->fqdn || !hostname_isequal(lease_tmp->fqdn, new_fqdn) )
499 lease->fqdn = new_fqdn
    [all...]
cache.c 824 int fqdn, nomem; local
830 fqdn = !!strchr(token, '.');
835 if ((daemon->options & OPT_EXPAND) && domain_suffix && !fqdn &&
    [all...]
dnsmasq.h 407 char *hostname, *fqdn; /* name from client-hostname option or config */ member in struct:dhcp_lease
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/
browser.h 75 const char *fqdn; /* Server version; optional */ member in struct:pa_browse_info
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/pulse/
browser.h 75 const char *fqdn; /* Server version; optional */ member in struct:pa_browse_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/pulse/
browser.h 75 const char *fqdn; /* Server version; optional */ member in struct:pa_browse_info
  /external/dhcpcd/
if-options.h 45 #define HOSTNAME_MAX_LEN 250 /* 255 - 3 (FQDN) - 2 (DNS enc) */
105 int fqdn; member in struct:if_options
if-options.c 89 {"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;
574 syslog(LOG_ERR, "invalid value `%s' for FQDN", arg);
dhcp.c 1043 * The FQDN option should be used if a FQDN is required. */
1055 if (ifo->fqdn != FQDN_DISABLE && ifo->hostname[0]) {
1056 /* IETF DHC-FQDN option (81), RFC4702 */
1070 *p++ = (ifo->fqdn & 0x09) | 0x04;
1445 /* We only want the FQDN name */
    [all...]
  /external/iputils/
ping6.c 271 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) {
571 /* guess if hostname is FQDN */
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
1467 int fqdn = 1; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
smtplib.py 243 `local_hostname` is used as the FQDN of the local host. By default,
256 # RFC 2821 says we should use the fqdn in the EHLO/HELO verb, and
259 fqdn = socket.getfqdn()
260 if '.' in fqdn:
261 self.local_hostname = fqdn
263 # We can't find an fqdn hostname, so use a domain literal
391 Hostname to send for this command defaults to the FQDN of the local
401 Hostname to send for this command defaults to the FQDN of the local
urllib.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
smtplib.py 243 `local_hostname` is used as the FQDN of the local host. By default,
256 # RFC 2821 says we should use the fqdn in the EHLO/HELO verb, and
259 fqdn = socket.getfqdn()
260 if '.' in fqdn:
261 self.local_hostname = fqdn
263 # We can't find an fqdn hostname, so use a domain literal
391 Hostname to send for this command defaults to the FQDN of the local
401 Hostname to send for this command defaults to the FQDN of the local
urllib.py     [all...]
  /external/mdnsresponder/mDNSPosix/
NetMonitor.c 383 mDNSexport mDNSBool ExtractServiceType(const domainname *const fqdn, domainname *const srvtype)
386 const mDNSu8 *src = fqdn->c;
406 mDNSlocal void recordstat(HostEntry *entry, const domainname *fqdn, int op, mDNSu16 rrtype)
417 if (!ExtractServiceType(fqdn, &srvtype)) return;
    [all...]
mDNSPosix.c 444 mDNSexport void mDNSPlatformSetDNSConfig(mDNS *const m, mDNSBool setservers, mDNSBool setsearch, domainname *const fqdn, DNameListElem **RegDomains, DNameListElem **BrowseDomains)
448 (void) fqdn;
    [all...]
  /external/mdnsresponder/mDNSCore/
uDNS.c     [all...]
mDNSEmbeddedAPI.h 1361 domainname fqdn; member in struct:HostnameInfo
    [all...]
  /external/ipsec-tools/src/racoon/
cftoken.l 548 fqdn { YYD; yylval.num = IDTYPE_FQDN; return(IDENTIFIERTYPE); }

Completed in 5256 milliseconds

1 2