Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/ntp/sntp/libevent/
H A Dhttp-internal.h64 char *bind_address; /* address to use for binding the src */ member
H A Dhttp.c1182 if (evcon->bind_address != NULL) in evhttp_connection_free()
1183 mm_free(evcon->bind_address); in evhttp_connection_free()
1204 if (evcon->bind_address) in evhttp_connection_set_local_address()
1205 mm_free(evcon->bind_address); in evhttp_connection_set_local_address()
1206 if ((evcon->bind_address = mm_strdup(address)) == NULL) in evhttp_connection_set_local_address()
2431 if (evcon->bind_address || evcon->bind_port) { in evhttp_connection_connect_()
2433 evcon->bind_address, evcon->bind_port, 0 /*reuse*/); in evhttp_connection_connect_()
2436 __func__, evcon->bind_address)); in evhttp_connection_connect_()
/freebsd-13.1/contrib/libevent/
H A Dhttp-internal.h64 char *bind_address; /* address to use for binding the src */ member
H A Dhttp.c1248 if (evcon->bind_address != NULL) in evhttp_connection_free()
1249 mm_free(evcon->bind_address); in evhttp_connection_free()
1267 if (evcon->bind_address) in evhttp_connection_set_local_address()
1268 mm_free(evcon->bind_address); in evhttp_connection_set_local_address()
1269 if ((evcon->bind_address = mm_strdup(address)) == NULL) in evhttp_connection_set_local_address()
2538 if (evcon->bind_address || evcon->bind_port) { in evhttp_connection_connect_()
2540 evcon->bind_address, evcon->bind_port, 0 /*reuse*/); in evhttp_connection_connect_()
2543 __func__, evcon->bind_address)); in evhttp_connection_connect_()
/freebsd-13.1/crypto/openssh/
H A Dreadconf.h83 char *bind_address; /* local socket address for connection to sshd */ member
H A Dsshconnect.c375 if (options.bind_address == NULL && options.bind_interface == NULL) in ssh_create_socket()
378 if (options.bind_address != NULL) { in ssh_create_socket()
384 if ((r = getaddrinfo(options.bind_address, NULL, in ssh_create_socket()
386 error("getaddrinfo: %s: %s", options.bind_address, in ssh_create_socket()
H A Dreadconf.c1311 charptr = &options->bind_address; in process_config_line_depth()
2410 options->bind_address = NULL; in initialize_options()
2776 free(o->bind_address); in free_options()
3353 dump_cfg_string(oBindAddress, o->bind_address); in dump_client_config()
H A Dssh.c1044 options.bind_address = optarg; in main()