Searched refs:host (Results 151 - 175 of 879) sorted by relevance

1234567891011>>

/freebsd-current/sys/contrib/openzfs/lib/libshare/os/linux/
H A Dnfs.c56 const char *host, const char *security, const char *access, void *cookie);
132 * current share option is a host specification and invokes a callback
133 * function with information about the host.
140 char *host_dup, *host, *next, *v6Literal; local
162 host = host_dup;
165 if (*host == '[') {
166 host++;
167 v6Literal = strchr(host, ']');
200 next = strchr(host, ':');
208 udata->sharepath, host, udat
323 char *host, *val_dup, *literal, *next; local
422 nfs_add_entry(FILE *tmpfile, const char *sharepath, const char *host, const char *security, const char *access_opts, void *pcookie) argument
[all...]
/freebsd-current/contrib/ntp/sntp/tests/
H A DpacketHandling.c231 sockaddr_u host; local
235 ZERO(host);
237 TEST_ASSERT_EQUAL(-1, handle_pkt(rpktl, &rpkt, &host, ""));
245 sockaddr_u host; local
249 ZERO(host);
251 TEST_ASSERT_EQUAL(1, handle_pkt(rpktl, &rpkt, &host, ""));
259 sockaddr_u host; local
263 ZERO(host);
265 TEST_ASSERT_EQUAL(1, handle_pkt(rpktl, &rpkt, &host, ""));
275 sockaddr_u host; local
300 sockaddr_u host; local
314 sockaddr_u host; local
[all...]
/freebsd-current/contrib/lib9p/transport/
H A Dsocket.h35 int l9p_start_server(struct l9p_server *server, const char *host,
/freebsd-current/contrib/ntp/include/
H A Dintreswork.h24 const char *host,
/freebsd-current/crypto/heimdal/lib/krb5/
H A Dkrbhst-test.c88 char host[MAXHOSTNAMELEN]; local
95 host, sizeof(host)) == 0)
96 printf("\thost: %s\n", host);
/freebsd-current/crypto/heimdal/lib/roken/
H A Dgetaddrinfo_hostspec.c38 /* getaddrinfo via string specifying host and port */
48 char host[MAXHOSTNAMELEN]; local
91 snprintf (host, sizeof(host), "%.*s", hostspec_len, hostspec);
92 return getaddrinfo (host, portstr, &hints, ai);
/freebsd-current/kerberos5/lib/libhdb/
H A DMakefile.depend13 kerberos5/tools/asn1_compile.host \
20 usr.bin/compile_et.host \
/freebsd-current/kerberos5/usr.sbin/iprop-log/
H A DMakefile.depend14 kerberos5/tools/slc.host \
19 usr.bin/compile_et.host \
/freebsd-current/sys/modules/rockchip/rk_dwmmc/
H A DMakefile2 .PATH: ${SRCTOP}/sys/dev/mmc/host/
/freebsd-current/share/mk/
H A Dsrc.init.linux.mk1 # We want to build some host tools (eg makefs, mkimg) for Linux
2 # This only gets included during DIRDEPS_BUILD when MACHINE is "host"
/freebsd-current/sys/modules/nvmf/nvmf/
H A DMakefile1 .PATH: ${SRCTOP}/sys/dev/nvmf/host
/freebsd-current/sys/nlm/
H A Dnlm.h40 * This value is added to host system IDs when recording NFS client
64 * Search for an existing NLM host that matches the given name
66 * found, create a new host. If 'addr' is non-NULL, record the remote
67 * address of the host so that we can call it back for async
69 * program version to use to communicate with this client. The host
77 * Search for an existing NLM host that matches the given remote
78 * address. If none is found, create a new host with the requested
80 * that host. The host reference count is incremented - the caller
87 * Register this NLM host wit
[all...]
/freebsd-current/crypto/openssl/crypto/http/
H A Dhttp_lib.c53 const char *host, *host_end; local
87 user = user_end = host = p;
88 host = strchr(p, '@');
89 if (host != NULL)
90 user_end = host++;
92 host = p;
94 /* parse host name/address as far as needed here */
95 if (host[0] == '[') {
97 host_end = strchr(host + 1, ']');
103 host_end = strchr(host, '
[all...]
/freebsd-current/crypto/heimdal/appl/ftp/ftpd/
H A Dlogwtmp.c84 ftpd_logwtmp_asl(char *line, char *name, char *host) argument
98 "host %s/%s user %s%sconnected pid %d",
99 host, line, name, name[0] ? " " : "dis", (int)getpid());
107 ftpd_logwtmp_wtmp(char *line, char *name, char *host) argument
138 strncpy(ut.ut_host, host, sizeof(ut.ut_host));
146 strncpy(utx.ut_host, host, sizeof(utx.ut_host));
148 utx.ut_syslen = strlen(host) + 1;
192 ftpd_logwtmp(char *line, char *name, char *host) argument
195 ftpd_logwtmp_asl(line, name, host);
197 ftpd_logwtmp_wtmp(line, name, host);
[all...]
/freebsd-current/contrib/wireguard-tools/
H A Dshowconf.c76 char host[4096 + 1]; local
84 if (!getnameinfo(&peer->endpoint.addr, addr_len, host, sizeof(host), service, sizeof(service), NI_DGRAM | NI_NUMERICSERV | NI_NUMERICHOST)) {
85 if (peer->endpoint.addr.sa_family == AF_INET6 && strchr(host, ':'))
86 printf("Endpoint = [%s]:%s\n", host, service);
88 printf("Endpoint = %s:%s\n", host, service);
/freebsd-current/lib/libc/tests/resolv/
H A Dresolv_test.c100 resolv_getaddrinfo(long threadnum, char *host, int port, const char **errstr) argument
111 error = getaddrinfo(host, portstr, &hints, &res);
113 DBG("T%ld: host %s ok\n", threadnum, host);
122 DBG("T%ld: host %s not found: %s\n", threadnum, host, *errstr);
128 resolv_gethostby(long threadnum, char *host, const char **errstr) argument
133 hp = gethostbyname(host);
135 DBG("T%ld: host %s ok\n", threadnum, host);
149 resolv_getipnodeby(long threadnum, char *host, const char **errstr) argument
178 char *host = hosts->sl_str[i]; local
[all...]
/freebsd-current/usr.sbin/pnfsdscopymr/
H A Dpnfsdscopymr.c81 char host[MNAMELEN + NI_MAXHOST + 2], *cp; local
129 * The host address and directory where the data storage file is
177 strlcpy(host, sf.f_mntfromname, sizeof(host));
178 cp = strchr(host, ':');
180 errx(1, "No <host>: in mount %s", host);
185 if (getaddrinfo(host, NULL, &hints, &res) != 0)
186 errx(1, "Can't get address for %s", host);
239 strlcpy(host, s
[all...]
/freebsd-current/sys/netgraph/
H A Dng_bridge.c43 * seconds when a host is seen to have jumped from one link to
46 * We keep a hashtable that maps Ethernet addresses to host info,
48 * tell us on which link the host may be found. A host's entry will
133 /* Information about a host, stored in a hash table entry */
138 u_int16_t staleness; /* seconds ago host last heard from */
637 struct ng_bridge_host *host; local
649 SLIST_FOREACH(host, &priv->tab[bucket], next) {
651 host->addr,
653 ary->hosts[i].age = host
806 struct ng_bridge_host *host; local
1012 struct ng_bridge_host *host; local
1029 struct ng_bridge_host *host; local
1117 struct ng_bridge_host *const host local
1169 struct ng_bridge_host *const host = *hptr; local
1219 struct ng_bridge_host *const host = *hptr; local
[all...]
/freebsd-current/contrib/ntp/sntp/
H A Dmain.h23 int handle_pkt(int rpktl, struct pkt *rpkt, sockaddr_u *host,
28 int on_wire(struct addrinfo *host, struct addrinfo *bcastaddr);
/freebsd-current/sys/contrib/libsodium/dist-build/
H A Dmsys2-win32.sh14 --host=i686-w64-mingw32 && \
H A Dmsys2-win64.sh14 --host=x86_64-w64-mingw32 && \
/freebsd-current/libexec/ftpd/
H A DMakefile.depend14 usr.bin/yacc.host \
/freebsd-current/sbin/hastd/
H A DMakefile.depend15 usr.bin/yacc.host \
/freebsd-current/sbin/pfctl/
H A DMakefile.depend14 usr.bin/yacc.host \
/freebsd-current/sbin/ipf/ipf/
H A DMakefile.depend13 usr.bin/yacc.host \

Completed in 322 milliseconds

1234567891011>>