Searched defs:hostname (Results 1 - 7 of 7) sorted by relevance

/bind-9.6-ESV-R11/lib/bind9/
H A Dgetaddresses.c50 bind9_getaddresses(const char *hostname, in_port_t port, argument
65 REQUIRE(hostname != NULL);
82 if (inet_pton(AF_INET, hostname, &in4) == 1) {
89 } else if (strlen(hostname) <= 127U) {
93 strcpy(tmpbuf, hostname);
151 result = getaddrinfo(hostname, NULL, &hints, &ai);
193 he = gethostbyname(hostname);
/bind-9.6-ESV-R11/lib/lwres/
H A Dgetrrset.c26 * a hostname, class, and type. hostname is a pointer a to
140 /*% Returns a set of resource records associated with a hostname, class, and type. hostname is a pointer a to null-terminated string. */
142 lwres_getrrsetbyname(const char *hostname, unsigned int rdclass, argument
181 lwresult = lwres_getrdatabyname(lwrctx, hostname,
H A Dgetaddrinfo.c27 * numbers for host hostname and service servname. The function is the
29 * RFC2133. hostname and servname are pointers to null-terminated strings
30 * or NULL. hostname is either a host name or a numeric host address
45 * char *ai_canonname; // canonical name for hostname
76 * containing the canonical name of the specified hostname in
80 * case, if the hostname argument is a NULL pointer, then the IP
90 * will be set to the loopback address if hostname is a NULL
93 * If ai_flags is set to AI_NUMERICHOST it indicates that hostname
124 * listed in gai_strerror() if an error occurs. If both hostname and
160 static int add_ipv4(const char *hostname, in
174 lwres_getaddrinfo(const char *hostname, const char *servname, const struct addrinfo *hints, struct addrinfo **res) argument
560 add_ipv4(const char *hostname, int flags, struct addrinfo **aip, int socktype, int port) argument
623 add_ipv6(const char *hostname, int flags, struct addrinfo **aip, int socktype, int port) argument
[all...]
/bind-9.6-ESV-R11/bin/dig/
H A Dhost.c151 " [-R number] [-m flag] hostname [server]\n"
659 char hostname[MXNAME]; local
838 strlcpy(hostname, argv[isc_commandline_index], sizeof(hostname));
848 if (get_reverse(store, sizeof(store), hostname,
856 strncpy(lookup->textname, hostname, sizeof(lookup->textname));
/bind-9.6-ESV-R11/bin/named/include/named/
H A Dserver.h60 isc_boolean_t hostname_set; /*%< User has set hostname */
61 char * hostname; /*%< User-specified hostname */ member in struct:ns_server
62 /*% Use hostname for server id */
/bind-9.6-ESV-R11/contrib/sdb/ldap/
H A Dldapdb.c62 char *hostname; member in struct:ldapdb_data
200 *ldp = ldap_open(data->hostname, data->portno);
465 if (data->hostname != NULL)
466 isc_mem_free(ns_g_mctx, data->hostname);
606 data->hostname = isc_mem_strdup(ns_g_mctx, data->hostport + (*data->hostport == '[' ? 1 : 0));
607 if (data->hostname == NULL) {
613 (s = strchr(data->hostname, ']')) != NULL )
616 s = data->hostname;
H A Dzone2ldap.c73 /* Put a hostname into a char ** array */
74 char **hostname_to_dn_list (char *hostname, char *zone, unsigned int flags);
586 /* take a hostname, and split it into a char ** of the dc parts,
591 hostname_to_dn_list (char *hostname, char *zone, unsigned int flags) argument
599 zname = strdup (hostname);

Completed in 18 milliseconds