/src/lib/libc/rpc/ |
svc_generic.c | 191 * bindaddr is NON-NULL, it performs a t_bind using the bindaddr. For 201 const struct t_bind *bindaddr, /* Local bind address */ 239 if (bindaddr == NULL) { 259 (struct sockaddr *)bindaddr->addr.buf, 266 listen(fd, (int)bindaddr->qlen) == -1) {
|
rpc_soc.c | 115 struct netbuf bindaddr; local in function:clnt_com_create 152 bindaddr.maxlen = bindaddr.len = sizeof (struct sockaddr_in); 153 bindaddr.buf = raddr; 156 cl = clnt_tli_create(fd, nconf, &bindaddr, prog, vers,
|
/src/share/examples/refuse/ian/libfetch/ |
common.c | 262 const char *bindaddr; local in function:_fetch_connect 281 bindaddr = getenv("FETCH_BIND_ADDRESS"); 291 if (bindaddr != NULL && *bindaddr != '\0' && 292 _fetch_bind(sd, res->ai_family, bindaddr) != 0) { 293 _fetch_info("failed to bind to '%s'", bindaddr);
|
ftp.c | 628 const char *bindaddr; local in function:_ftp_transfer 773 bindaddr = getenv("FETCH_BIND_ADDRESS"); 774 if (bindaddr != NULL && *bindaddr != '\0' && 775 _fetch_bind(sd, sa.ss_family, bindaddr) != 0)
|
/src/libexec/httpd/lua/ |
bozo.lua | 51 opt.add_option{"-i", "--bindaddr", action="store", dest="bindaddress", help="--bindaddr address"} 122 if options.bindaddr then 123 bozohttpd.set_pref(httpd, prefs, "bind address", options.bindaddr)
|
/src/tests/net/net/ |
t_pktinfo_send.c | 80 struct sockaddr_in bindaddr; local in function:sock_bind 82 sock_in_init(&bindaddr, addr, port); 84 (struct sockaddr *)&bindaddr, sizeof(bindaddr));
|