HomeSort by: relevance | last modified time | path
    Searched defs:host (Results 1 - 25 of 312) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/ipf/dist/lib/
connecttcp.c 21 struct hostent *host; local
33 host = gethostbyname(server);
34 if (host == NULL)
36 memcpy(&sin.sin_addr, host->h_addr_list[0],
  /src/external/ibm-public/postfix/dist/src/util/
get_domainname.c 52 const char *host; local
60 host = get_hostname();
61 if ((dot = strchr(host, '.')) == 0 || strchr(dot + 1, '.') == 0) {
62 my_domain_name = mystrdup(host);
  /src/usr.sbin/lpr/common_source/
common_vars.c 47 char host[MAXHOSTNAMELEN+1]; /* host machine name */ variable
48 char *from = host; /* client's machine name */
  /src/external/ibm-public/postfix/dist/src/global/
domain_list.c 7 /* match a host or domain name against a pattern list
25 /* This module implements tests for list membership of a host or
33 /* A host name matches a domain list when its name appears in the
55 /* domain_list_match() matches the specified host or domain name
106 char *host; local
126 host = argv[optind + 1];
127 vstream_printf("%s: %s\n", host, domain_list_match(list, host) ?
namadr_list.c 29 /* A list pattern specifies a host name, a domain name,
40 /* A host matches a list when its name or address matches
61 /* namadr_list_match() matches the specified host name and
70 /* match_ops(3) match host by name or by address
112 char *host; local
133 host = argv[optind + 1];
135 vstream_printf("%s/%s: %s\n", host, addr,
136 namadr_list_match(list, host, addr) ?
  /src/sys/arch/mips/sibyte/pci/
sbpcihb.c 37 * Driver for SB-1250 PCI Host Bridge.
82 bool host; local
84 /* Tell the user whether it's host or device mode. */
86 host = (regval & M_SYS_PCI_HOST) != 0;
88 aprint_normal(": %s mode\n", host ? "host" : "device");
sbbrz.c 174 bool host; local
176 /* Tell the user whether it's host or device mode. */
178 host = (regval & M_SYS_PCI_HOST) != 0;
180 aprint_normal(": %s pci mode\n", host ? "host" : "device");
  /src/crypto/dist/ipsec-tools/src/racoon/
throttle.h 42 struct sockaddr_storage host; member in struct:throttle_entry
  /src/external/mpl/bind/dist/lib/dns/rdata/generic/
rt_21.h 25 dns_name_t host; member in struct:dns_rdata_rt
  /src/external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/
rt_21.h 26 dns_name_t host; member in struct:dns_rdata_rt
  /src/usr.bin/innetgr/
innetgr.c 45 "usage: %s [-v] [-d domain] [-h host] [-u user] netgroup\n",
55 char *host = NULL; local
64 host = optarg;
80 ok = innetgr(argv[optind], host, user, domain);
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/test/
srp-test-runner.c 46 } else if (!strcmp(test_to_run, "multi-host-record")) {
117 adv_host_t *host; local
120 for (host = server->hosts; host != NULL; host = host->next) {
121 if (host->instances != NULL) {
122 for (int i = 0; i < host->instances->num; i++) {
123 if (host->instances->vec[i] != NULL) {
124 instance = host->instances->vec[i]
    [all...]
  /src/external/ibm-public/postfix/dist/src/dns/
dns_strrecord.c 55 MAI_HOSTADDR_STR host; local
65 if (dns_rr_to_pa(rr, &host) == 0)
68 vstring_sprintf_append(buf, "%s", host.buf);
108 * we don't bother saving the source host and mailbox information, as
  /src/external/mit/libuv/dist/src/unix/
getnameinfo.c 47 req->host,
48 sizeof(req->host),
57 char* host; local
62 host = service = NULL;
68 host = req->host;
73 req->getnameinfo_cb(req, req->retcode, host, service);
  /src/external/mit/libuv/dist/src/win/
getnameinfo.c 43 WCHAR host[NI_MAXHOST]; local
51 host,
52 ARRAY_SIZE(host),
61 size = sizeof(req->host);
62 ret = uv__copy_utf16_to_utf8(host, -1, req->host, &size);
81 char* host; local
86 host = service = NULL;
92 host = req->host;
    [all...]
  /src/lib/libwrap/
eval.c 4 * Routines for controlled evaluation of host names, user names, and so on.
44 * host name has the value STRING_PARANOID it means there was a name/address
66 eval_hostaddr(struct host_info *host)
68 if (host->addr[0] == 0) {
69 (void)strlcpy(host->addr, unknown, sizeof(host->addr));
70 if (host->request->hostaddr != 0)
71 host->request->hostaddr(host);
73 return (host->addr)
134 char *host = eval_hostinfo(request->server); local
    [all...]
  /src/libexec/rexecd/unit-tests/
rexec.c 50 char *host = __UNCONST("localhost"); local
59 host = optarg;
77 if ((s = rexec(&host, sv->s_port, user, pass, cmd, NULL)) == -1)
  /src/sbin/mount_portal/
pt_tcp.c 59 * Key will be tcp/host/port[/"priv"]
61 * requested host and port.
68 char host[MAXHOSTNAMELEN]; local
78 if (q == 0 || (size_t)(q - p) >= sizeof(host))
81 if (strlcpy(host, p, sizeof(host)) >= sizeof(host))
106 if (getaddrinfo(host, port, &hints, &res) != 0)
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_dsi.c 89 struct intel_dsi_host *host; local
92 host = kzalloc(sizeof(*host), GFP_KERNEL);
93 if (!host)
96 host->base.ops = funcs;
97 host->intel_dsi = intel_dsi;
98 host->port = port;
101 * We should call mipi_dsi_host_register(&host->base) here, but we don't
102 * have a host->dev, and we don't have OF stuff either. So just use the
109 kfree(host);
    [all...]
  /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/qcom/
Makefile 4 apq8016-sbc-usb-host-dtbs := apq8016-sbc.dtb apq8016-sbc-usb-host.dtbo
6 dtb-$(CONFIG_ARCH_QCOM) += apq8016-sbc-usb-host.dtb
  /src/tests/lib/libc/gen/
t_sethostname.c 41 static char host[MAXHOSTNAMELEN]; variable
71 (void)sethostname(host, sizeof(host));
76 (void)sethostname(host, sizeof(host));
82 atf_tc_set_md_var(tc, "descr", "Too long host name errors out?");
97 (void)sethostname(host, sizeof(host));
103 atf_tc_set_md_var(tc, "descr", "Can normal user set the host name?");
112 ATF_REQUIRE_ERRNO(EPERM, sethostname(host, sizeof(host)) == -1)
    [all...]
  /src/usr.bin/finger/
net.c 72 char *host; local
78 if (!(host = strrchr(name, '@')))
80 *host++ = '\0';
85 error = getaddrinfo(host, "finger", &hints, &res0);
87 warnx("%s: %s", gai_strerror(error), host);
114 /* have network connection; identify the host connected with */
115 (void)printf("[%s]\n", res0->ai_canonname ? res0->ai_canonname : host);
  /src/usr.bin/who/
utmpentry.h 50 char host[WHO_HOST_LEN + 1]; member in struct:utmpentry
  /src/usr.sbin/ldpd/
label.h 54 bool host; /* change routes using RTF_HOST */ member in struct:label
  /src/crypto/external/bsd/heimdal/dist/lib/krb5/
krbhst-test.c 90 char host[MAXHOSTNAMELEN]; local
97 host, sizeof(host)) == 0)
98 printf("\thost: %s\n", host);

Completed in 36 milliseconds

1 2 3 4 5 6 7 8 91011>>