Searched refs:host (Results 351 - 375 of 837) sorted by relevance

<<11121314151617181920>>

/freebsd-13-stable/contrib/lib9p/transport/
H A Dsocket.c70 l9p_start_server(struct l9p_server *server, const char *host, const char *port) argument
81 err = getaddrinfo(host, port, &hints, &res0);
154 char host[NI_MAXHOST + 1]; local
158 err = getnameinfo(client_addr, client_addr_len, host, NI_MAXHOST, serv,
165 L9P_LOG(L9P_INFO, "new connection from %s:%s", host, serv);
189 host, serv, strerror(err));
/freebsd-13-stable/sys/arm/mv/
H A Dmv_pci_ctrl.c66 uint64_t host; member in struct:mv_pcib_ctrl_range
275 start += sc->ranges[i].host;
277 end += sc->ranges[i].host;
326 sc->ranges[i].host = 0;
328 sc->ranges[i].host <<= 32;
329 sc->ranges[i].host |= base_ranges[j++];
/freebsd-13-stable/crypto/openssh/
H A Dscp.c128 int do_cmd(char *host, char *remuser, int port, char *cmd, int *fdin, int *fdout);
129 int do_cmd2(char *host, char *remuser, int port, char *cmd, int fdin, int fdout);
234 * given host. This returns < 0 if execution fails, and >= 0 otherwise. This
239 do_cmd(char *host, char *remuser, int port, char *cmd, int *fdin, int *fdout) argument
245 "Executing: program %s host %s, user %s, command %s\n",
246 ssh_program, host,
273 /* Fork a child to execute the command on the remote host using ssh. */
294 addargs(&args, "%s", host);
320 do_cmd2(char *host, char *remuser, int port, char *cmd, int fdin, int fdout) argument
327 "Executing: 2nd program %s host
879 char *suser = NULL, *host = NULL, *src = NULL; local
1001 char *bp, *host = NULL, *src = NULL, *suser = NULL; local
[all...]
/freebsd-13-stable/usr.sbin/bootparamd/bootparamd/
H A Dbootparamd.c53 255 & whoami->client_address.bp_address_u.ip_addr.host,
59 255 & whoami->client_address.bp_address_u.ip_addr.host,
68 if (debug) warnx("this is host %s", he->h_name);
69 if (dolog) syslog(LOG_NOTICE,"This is host %s\n", he->h_name);
88 255 & res.router_address.bp_address_u.ip_addr.host,
96 255 & res.router_address.bp_address_u.ip_addr.host,
156 255 & res.server_address.bp_address_u.ip_addr.host,
163 255 & res.server_address.bp_address_u.ip_addr.host,
176 of the file, e g "host:/export/root/client" if it can be found.
177 If the host i
[all...]
/freebsd-13-stable/usr.bin/logger/
H A Dlogger.c106 char *tag, *host, buf[1024], *timestamp, tbuf[26], local
111 host = NULL;
142 host = optarg;
169 if (host) {
170 nsock = socksetup(src, host, svcname, &socks);
198 if (host == NULL)
365 * Send the message to syslog, either on the local host, or on a remote host
445 "logger [-46Ais] [-f file] [-h host] [-P port] [-p pri] [-t tag]\n"
/freebsd-13-stable/sys/dev/sdhci/
H A Dsdhci.c873 slot->host.f_min = SDHCI_MIN_FREQ(slot->bus, slot);
874 slot->host.f_max = slot->max_clk;
875 slot->host.host_ocr = 0;
877 slot->host.host_ocr |= MMC_OCR_320_330 | MMC_OCR_330_340;
879 slot->host.host_ocr |= MMC_OCR_290_300 | MMC_OCR_300_310;
887 slot->host.host_ocr |= MMC_OCR_LOW_VOLTAGE;
888 if (slot->host.host_ocr == 0) {
1014 slot->host.caps = host_caps;
1216 ios = &slot->host.ios;
1245 struct mmc_ios *ios = &slot->host
[all...]
/freebsd-13-stable/crypto/heimdal/kdc/
H A Dannounce.c302 register_srv_realms(CFStringRef host) argument
310 hostname = CFString2utf8(host);
424 CFStringRef host; local
429 host = SCDynamicStoreCopyLocalHostName(store);
430 if (host == NULL)
433 if (g_hostname == NULL || CFStringCompare(host, g_hostname, 0) != kCFCompareEqualTo) {
436 g_hostname = CFRetain(host);
464 CFRelease(host);
H A Dhprop.c150 arg_printusage (args, num_args, NULL, "[host[:port]] ...");
290 char *host = argv[i]; local
292 port = strchr(host, ':');
301 fd = open_socket(context, host, port);
304 krb5_warn (context, errno, "connect %s", host);
312 krb5_warn(context, ret, "krb5_sname_to_principal(%s)", host);
343 krb5_warn(context, ret, "krb5_sendauth (%s)", host);
354 krb5_warnx(context, "iterate to host %s failed", host);
369 krb5_warn(context, ret, "krb5_read_priv_message: %s", host);
[all...]
/freebsd-13-stable/lib/libfetch/
H A Dcommon.h111 int fetch_socks5_getenv(char **host, int *port);
112 int fetch_socks5_init(conn_t *conn, const char *host,
/freebsd-13-stable/sbin/dump/
H A Ddump.h84 extern char *host; /* remote host (if any) */
134 int rmthost(const char *host);
/freebsd-13-stable/sbin/pfctl/
H A Dpf_print_state.c141 char host[NI_MAXHOST]; local
143 strlcpy(host, "?", sizeof(host));
153 host, sizeof(host), NULL, 0, NI_NOFQDN);
164 host, sizeof(host), NULL, 0, NI_NOFQDN);
168 printf("%s", host);
/freebsd-13-stable/contrib/bearssl/samples/
H A Dclient_basic.c42 * Connect to the specified host and port. The connected socket is
46 host_connect(const char *host, const char *port) argument
55 err = getaddrinfo(host, port, &hints, &si);
242 const char *host, *port, *path; local
250 * Parse command-line argument: host, port, and path. The path
256 host = argv[1];
272 fd = host_connect(host, port);
296 * target host name: it will be used for the SNI extension. The
299 br_ssl_client_reset(&sc, host, 0);
321 br_sslio_write_all(&ioc, host, strle
[all...]
H A Dserver_basic.c90 * Create a server socket bound to the specified host and port. If 'host'
96 host_bind(const char *host, const char *port) argument
105 err = getaddrinfo(host, port, &hints, &si);
127 if (host == NULL) {
135 if (host == NULL) {
/freebsd-13-stable/contrib/bmake/mk/
H A Dhost.libnames.mk1 # $Id: host.libnames.mk,v 1.5 2020/08/19 17:51:53 sjg Exp $
/freebsd-13-stable/sys/dev/mmc/host/
H A Ddwmmc_samsung.c45 #include <dev/mmc/host/dwmmc_var.h>
46 #include <dev/mmc/host/dwmmc_reg.h>
H A Ddwmmc_altera.c44 #include <dev/mmc/host/dwmmc_var.h>
H A Ddwmmc_hisi.c45 #include <dev/mmc/host/dwmmc_var.h>
/freebsd-13-stable/contrib/netcat/
H A Dnetcat.c153 char *host, *uport; local
172 host = NULL;
341 host = argv[0];
347 host = NULL;
349 host = argv[0];
430 s = unix_bind(host);
432 s = unix_listen(host);
438 s = local_listen(host, uport, hints);
502 if ((s = unix_connect(host)) > 0 && !zflag) {
524 s = socks_connect(host, portlis
663 remote_connect(const char *host, const char *port, struct addrinfo hints) argument
761 local_listen(char *host, char *port, struct addrinfo hints) argument
[all...]
/freebsd-13-stable/crypto/openssl/apps/
H A Ds_apps.h18 int do_server(int *accept_sock, const char *host, const char *port,
31 int init_client(int *sock, const char *host, const char *port,
/freebsd-13-stable/targets/pseudo/bootstrap-tools/
H A DMakefile10 # we build for the pseudo machine "host"
11 TARGET_MACHINE= host
74 MACHINE=host \
/freebsd-13-stable/crypto/heimdal/lib/krb5/
H A Dchangepw.c75 const char *host)
145 host, strerror(ret));
167 const char *host)
255 host, strerror(ret));
273 const char *host)
293 host, strerror(save_errno));
296 krb5_set_error_message(context, 1,"recvfrom timeout %s", host);
311 N_("Message too large from %s", "host"),
312 host);
321 host, strerro
68 chgpw_send_request(krb5_context context, krb5_auth_context *auth_context, krb5_creds *creds, krb5_principal targprinc, int is_stream, rk_socket_t sock, const char *passwd, const char *host) argument
160 setpw_send_request(krb5_context context, krb5_auth_context *auth_context, krb5_creds *creds, krb5_principal targprinc, int is_stream, rk_socket_t sock, const char *passwd, const char *host) argument
266 process_reply(krb5_context context, krb5_auth_context auth_context, int is_stream, rk_socket_t sock, int *result_code, krb5_data *result_code_string, krb5_data *result_string, const char *host) argument
[all...]
/freebsd-13-stable/usr.bin/quota/
H A Dquota.c101 static enum clnt_stat callaurpc(char *host, int prognum, int versnum, int procnum,
576 char *cp, host[NI_MAXHOST]; local
593 memset(host, 0, sizeof(host));
594 memcpy(host, fst->f_mntfromname, cp - fst->f_mntfromname);
595 host[sizeof(host) - 1] = '\0';
606 call_stat = callaurpc(host, RQUOTAPROG, EXT_RQUOTAVERS,
613 call_stat = callaurpc(host, RQUOTAPROG, RQUOTAVERS,
628 warnx("quota permission error, host
665 callaurpc(char *host, int prognum, int versnum, int procnum, xdrproc_t inproc, char *in, xdrproc_t outproc, char *out) argument
[all...]
/freebsd-13-stable/contrib/sendmail/contrib/
H A Dbitdomain.c202 * Validate whether the mail domain "host" is registered in the DNS.
203 * If "host" is a CNAME, it is expanded in-place if the expansion fits
208 valhost(host, hbsize)
209 char *host;
233 ret = res_querydomain(host, "", C_IN, qtype,
303 (void)strcpy(host, nbuf);
/freebsd-13-stable/contrib/sendmail/src/
H A Dtls.h87 ** the MX/host lookup was not secure.
99 # define GETTLSA(host, pste, port) gettlsa(host, NULL, pste, TLSAFLNONE, 0, port)
100 # define GETTLSANOX(host, pste, port) gettlsa(host, NULL, pste, TLSAFLNOEXP, 0, port)
/freebsd-13-stable/libexec/bootpd/
H A Dbootpd.h91 * given host. This information is used to determine which data should or
152 * if it is desired to always send the same response to a given host.
157 struct host {
156 struct host { struct

Completed in 156 milliseconds

<<11121314151617181920>>