Searched refs:hostname (Results 276 - 300 of 850) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dcurl_addrinfo.c388 Curl_ip2addr(int af, const void *inaddr, const char *hostname, int port) argument
405 DEBUGASSERT(inaddr && hostname);
411 hoststr = strdup(hostname);
510 curl_dogetaddrinfo(const char *hostname, argument
516 int res=(getaddrinfo)(hostname, service, hints, result);
/macosx-10.9.5/libxml2-26/libxml2/
H A Dnanohttp.c133 char *hostname; /* the host name */ member in struct:xmlNanoHTTPCtxt
288 if (ctxt->hostname != NULL) {
289 xmlFree(ctxt->hostname);
290 ctxt->hostname = NULL;
316 ctxt->hostname = (char *) xmlCharStrndup(uri->server + 1, len -2);
318 ctxt->hostname = xmlMemStrdup(uri->server);
320 ctxt->hostname = xmlMemStrdup(uri->server);
419 if (ctxt->hostname != NULL) xmlFree(ctxt->hostname);
795 xmlStrcat(tmp_http, (const xmlChar *) ctxt->hostname);
[all...]
/macosx-10.9.5/apache-786.1/httpd/server/
H A Dvhost.c226 const char *hostname,
234 while (hostname[0]) {
235 err = get_addresses(p, ap_getword_conf(p, &hostname), &addrs, s->port);
643 char *hostname; local
645 rv = apr_getnameinfo(&hostname, s->addrs->host_addr, 0);
647 s->server_hostname = apr_pstrdup(p, hostname);
690 /* Lowercase and remove any trailing dot and/or :port from the hostname,
693 * In most configurations the exact syntax of the hostname isn't
696 * the hostname is interpolated into the filename, we need to be sure
712 if (!*r->hostname) {
225 ap_parse_vhost_addrs(apr_pool_t *p, const char *hostname, server_rec *s) argument
[all...]
/macosx-10.9.5/apache-786.1/httpd/modules/proxy/
H A Dmod_proxy_http.c273 conn->addr, conn->hostname);
742 if (ap_strchr_c(uri->hostname, ':')) { /* if literal IPv6 address */
744 buf = apr_pstrcat(p, "Host: [", uri->hostname, "]:",
747 buf = apr_pstrcat(p, "Host: [", uri->hostname, "]", CRLF, NULL);
751 buf = apr_pstrcat(p, "Host: ", uri->hostname, ":",
754 buf = apr_pstrcat(p, "Host: ", uri->hostname, CRLF, NULL);
759 /* don't want to use r->hostname, as the incoming header might have a
762 const char* hostname = apr_table_get(r->headers_in,"Host"); local
763 if (!hostname) {
764 hostname
[all...]
/macosx-10.9.5/remote_cmds-41.90.1/timed.tproj/timed.tproj/
H A Dslave.c156 (void)strcpy(to.tsp_name, hostname);
426 (void)strcpy(to.tsp_name, hostname);
437 (void)strcpy(to.tsp_name, hostname);
456 (void)strcpy(to.tsp_name, hostname);
490 (void)strcpy(to.tsp_name, hostname);
530 if (!strcmp(msg->tsp_name, hostname)) {
550 (void)strcpy(to.tsp_name, hostname);
603 (void)strcpy(to.tsp_name, hostname);
688 (void)strcpy(to.tsp_name, hostname);
/macosx-10.9.5/Heimdal-323.92.1/lib/hx509/
H A Dtest_ca.in145 --hostname="www.test.h5l.se" \
146 --hostname="ftp.test.h5l.se" \
150 echo "verify certificate hostname (ok)"
152 --hostname=www.test.h5l.se \
156 echo "verify certificate hostname (fail)"
158 --hostname=www2.test.h5l.se \
162 echo "verify certificate hostname (fail)"
164 --hostname=2www.test.h5l.se \
168 echo "issue certificate (hostname in CN)"
176 echo "verify certificate hostname (o
[all...]
H A Dtest_cert.in70 --hostname=foo.com \
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/
H A Dnanohttp.c138 char *hostname; /* the host name */ member in struct:xmlNanoHTTPCtxt
291 if (ctxt->hostname != NULL) {
292 xmlFree(ctxt->hostname);
293 ctxt->hostname = NULL;
315 ctxt->hostname = xmlMemStrdup(uri->server);
414 if (ctxt->hostname != NULL) xmlFree(ctxt->hostname);
790 xmlStrcat(tmp_http, (const xmlChar *) ctxt->hostname);
1374 if (ctxt->hostname == NULL) {
1382 blen = strlen(ctxt->hostname) *
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/gssapi/cf/
H A Dcredential.c68 * * kGSSICLKDCHostname - CFStringRef hostname of LKDC hostname
371 * Try paring the hostname as an URL first
410 CFStringRef hostname, path; local
412 hostname = CopyFoldedHostName(host, &path);
413 if (hostname) {
422 CFArrayRef array = CFDictionaryGetValue(rules, hostname);
444 CFDictionarySetValue(rules, hostname, mutable);
447 CFRelease(hostname);
455 * host is a URL string or hostname strin
[all...]
/macosx-10.9.5/KerberosHelper-148/Tests/
H A DKRBCreateSession2.pl10 # Test this in an enviroment where you get a hostname from DHCP and
11 # where you don't (ie use configured hostname.local name).
51 my $hostname = hostname();
52 (my $short_hostname = $hostname) =~ s/([^.]*).*/\1/;
54 die "hostname is short hostname" if ($hostname eq $short_hostname);
59 print "my hostname: $hostname (
[all...]
/macosx-10.9.5/ntp-88/scripts/
H A Dntpsweep.in55 <file>|[--host <hostname>]
68 Specify hosts file. File format is one hostname or ip number per line.
70 --host <hostname>
104 # translate IP to hostname if possible
/macosx-10.9.5/network_cmds-433/traceroute.tproj/
H A Dtraceroute.c368 char *hostname; variable
715 hostname = argv[optind];
716 hi = gethostinfo(hostname);
721 prog, hostname, inet_ntoa(to->sin_addr));
722 hostname = hi->name;
977 prog, hostname, inet_ntoa(to->sin_addr));
1264 prog, hostname, packlen, cc);
1648 gethostinfo(register char *hostname) argument
1656 if (strlen(hostname) > 64) {
1657 Fprintf(stderr, "%s: hostname \"
1715 getaddr(register u_int32_t *ap, register char *hostname) argument
[all...]
/macosx-10.9.5/NFS-81/rpc.lockd/
H A Dkern.c114 static char hostname[MAXHOSTNAMELEN + 1]; /* Hostname. */ variable
214 * Hold off getting hostname until first
218 if (hostname[0] == '\0')
219 (void)gethostname(hostname, sizeof(hostname) - 1);
450 cl->cl_auth = authunix_create(hostname,
481 arg4.alock.caller_name = hostname;
502 arg.alock.caller_name = hostname;
548 arg4.alock.caller_name = hostname;
570 arg.alock.caller_name = hostname;
[all...]
/macosx-10.9.5/CPANInternal-140/Authen-Krb5/
H A Dsimple_server15 chomp($SERVER = hostname());
/macosx-10.9.5/CPANInternal-140/IO-Socket-SSL/
H A DMakefile.PL79 so verifying a hostname against the certificate will not work.
/macosx-10.9.5/CPANInternal-140/Krb5-1.9/
H A Dsimple_server15 chomp($SERVER = hostname());
/macosx-10.9.5/Heimdal-323.92.1/lib/gssapi/ns/
H A DGSSKit.h64 + (GSSName *)nameWithHostBasedService: (NSString *)service withHostName: (NSString *)hostname;
167 (NetworkAuthenticationHelper *)initWithHostname: (NSString *)hostname withService: (NSService *)service withParams: (NSDictionary *)info;
/macosx-10.9.5/Heimdal-323.92.1/lib/krb5/
H A Dverify_krb5_conf.c147 char hostname[128]; local
191 if(strsep_copy(&p, ":", hostname, sizeof(hostname)) < 0) {
194 hostname[strcspn(hostname, "/")] = '\0';
206 ret = getaddrinfo(hostname, service, &hints, &ai);
209 ret = getaddrinfo(hostname, service, &hints, &ai);
212 krb5_warnx(context, "%s: %s (%s)", path, gai_strerror(ret), hostname);
/macosx-10.9.5/Heimdal-323.92.1/tests/apple/
H A Dcheck-apple-ac.in81 --kdc-hostname=kkdcp://wdg01-uat.apple.com/kkdcp \
H A Dcheck-apple-hodadmin.in98 ${kinit} --kdc-hostname=localhost --canon --password-file=${testdir}/foopassword ${u}@${r} || \
/macosx-10.9.5/NFS-81/rpc.statd/
H A Dstatd.c420 fprintf(stderr, "usage: rpc.statd [-d] [ -n | -l | -L | -N hostname ]\n");
774 const char *hostname; local
776 hostname = name;
777 if ((hostname[0] == '[') && (hostname[strlen(hostname)-1] == ']')) {
779 strlcpy(namebuf, hostname+1, sizeof(namebuf));
781 hostname = namebuf;
786 if (getaddrinfo(hostname, NULL, &aihints, &ailist))
/macosx-10.9.5/OpenSSH-186/openssh/openbsd-compat/
H A Dbsd-cray.c177 record_failed_login(const char *user, const char *hostname, const char *ttyname) argument
206 char hostname[MAXHOSTNAMELEN]; local
225 hostname[0] = '\0';
226 strlcpy(hostname,
269 usent.host = hostname;
391 fsent.host = hostname;
427 fsent.host = hostname;
471 ssent.host = hostname;
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DWebCookieManagerProxy.cpp127 void WebCookieManagerProxy::deleteCookiesForHostname(const String& hostname) argument
129 context()->sendToNetworkingProcessRelaunchingIfNecessary(Messages::WebCookieManager::DeleteCookiesForHostname(hostname));
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/API/gtk/
H A DWebKitWebExtension.cpp86 WebString* hostname = static_cast<WebString*>(message.get(String::fromUTF8("Hostname"))); local
87 WebCore::prefetchDNS(hostname->string());
/macosx-10.9.5/bind9-45.100/bind9/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;

Completed in 512 milliseconds

<<11121314151617181920>>