HomeSort by: relevance | last modified time | path
    Searched refs:bindaddr (Results 1 - 12 of 12) sorted by relevancy

  /src/crypto/external/bsd/openssl.old/dist/apps/
s_socket.c 67 BIO_ADDRINFO *bindaddr = NULL; local
85 family, type, protocol, &bindaddr);
103 if (bindaddr != NULL) {
104 for (bi = bindaddr; bi != NULL; bi = BIO_ADDRINFO_next(bi)) {
161 if (bindaddr != NULL && !found) {
179 if (bindaddr != NULL) {
180 BIO_ADDRINFO_free (bindaddr);
  /src/crypto/external/apache2/openssl/dist/apps/lib/
s_socket.c 81 BIO_ADDRINFO *bindaddr = NULL; local
100 family, type, protocol, &bindaddr);
118 if (bindaddr != NULL) {
119 for (bi = bindaddr; bi != NULL; bi = BIO_ADDRINFO_next(bi)) {
193 if (bindaddr != NULL && !found) {
221 if (bindaddr != NULL) {
222 BIO_ADDRINFO_free(bindaddr);
  /src/crypto/external/bsd/openssl/dist/apps/lib/
s_socket.c 82 BIO_ADDRINFO *bindaddr = NULL; local
100 family, type, protocol, &bindaddr);
118 if (bindaddr != NULL) {
119 for (bi = bindaddr; bi != NULL; bi = BIO_ADDRINFO_next(bi)) {
176 if (bindaddr != NULL && !found) {
196 if (bindaddr != NULL) {
197 BIO_ADDRINFO_free (bindaddr);
  /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
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
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
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
82 sock_in_init(&bindaddr, addr, port);
84 (struct sockaddr *)&bindaddr, sizeof(bindaddr));
  /src/external/bsd/fetch/dist/libfetch/
common.c 278 const char *bindaddr; local
295 bindaddr = getenv("FETCH_BIND_ADDRESS");
305 if (bindaddr != NULL && *bindaddr != '\0' &&
306 fetch_bind(sd, res->ai_family, bindaddr) != 0) {
307 fetch_info("failed to bind to '%s'", bindaddr);
ftp.c 691 const char *bindaddr; local
844 bindaddr = getenv("FETCH_BIND_ADDRESS");
845 if (bindaddr != NULL && *bindaddr != '\0' &&
846 fetch_bind(sd, u.ss.ss_family, bindaddr) != 0)
  /src/crypto/external/bsd/openssh/dist/
sshconnect.c 394 struct sockaddr_storage bindaddr; local
431 memcpy(&bindaddr, res->ai_addr, res->ai_addrlen);
439 bindaddrlen = sizeof(bindaddr);
442 &bindaddr, &bindaddrlen) != 0) {
462 if ((r = getnameinfo((struct sockaddr *)&bindaddr, bindaddrlen,
467 if (bind(sock, (struct sockaddr *)&bindaddr, bindaddrlen) != 0) {

Completed in 26 milliseconds