Home
last modified time | relevance | path

Searched refs:bind_address (Results 1 – 9 of 9) sorted by relevance

/src/contrib/libevent/
H A Dhttp-internal.h61 char *bind_address; /* address to use for binding the src */ member
H A Dhttp.c1269 if (evcon->bind_address != NULL) in evhttp_connection_free()
1270 mm_free(evcon->bind_address); in evhttp_connection_free()
1288 if (evcon->bind_address) in evhttp_connection_set_local_address()
1289 mm_free(evcon->bind_address); in evhttp_connection_set_local_address()
1290 if ((evcon->bind_address = mm_strdup(address)) == NULL) in evhttp_connection_set_local_address()
2579 if (evcon->bind_address || evcon->bind_port) { in evhttp_connection_connect_()
2581 evcon->bind_address, evcon->bind_port, 0 /*reuse*/); in evhttp_connection_connect_()
2584 __func__, evcon->bind_address)); in evhttp_connection_connect_()
/src/contrib/ntp/sntp/libevent/
H A Dhttp-internal.h61 char *bind_address; /* address to use for binding the src */ member
H A Dhttp.c1269 if (evcon->bind_address != NULL) in evhttp_connection_free()
1270 mm_free(evcon->bind_address); in evhttp_connection_free()
1288 if (evcon->bind_address) in evhttp_connection_set_local_address()
1289 mm_free(evcon->bind_address); in evhttp_connection_set_local_address()
1290 if ((evcon->bind_address = mm_strdup(address)) == NULL) in evhttp_connection_set_local_address()
2579 if (evcon->bind_address || evcon->bind_port) { in evhttp_connection_connect_()
2581 evcon->bind_address, evcon->bind_port, 0 /*reuse*/); in evhttp_connection_connect_()
2584 __func__, evcon->bind_address)); in evhttp_connection_connect_()
/src/crypto/krb5/src/lib/apputils/
H A Dnet-server.c214 struct bind_address { struct
222 static SET(struct bind_address) bind_addresses; argument
307 struct bind_address addr, val; in loop_add_address()
801 setup_socket(struct bind_address *ba, struct sockaddr *sock_address, in setup_socket()
940 struct bind_address addr; in setup_addresses()
1501 struct bind_address val; in loop_free()
/src/crypto/openssh/
H A Dreadconf.h83 char *bind_address; /* local socket address for connection to sshd */ member
H A Dsshconnect.c374 if (options.bind_address == NULL && options.bind_interface == NULL) in ssh_create_socket()
377 if (options.bind_address != NULL) { in ssh_create_socket()
383 if ((r = getaddrinfo(options.bind_address, NULL, in ssh_create_socket()
385 error("getaddrinfo: %s: %s", options.bind_address, in ssh_create_socket()
H A Dreadconf.c1511 charptr = &options->bind_address; in process_config_line_depth()
2711 options->bind_address = NULL; in initialize_options()
3099 free(o->bind_address); in free_options()
3695 dump_cfg_string(oBindAddress, o->bind_address); in dump_client_config()
H A Dssh.c1101 options.bind_address = optarg; in main()