Home
last modified time | relevance | path

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

/external/chromium/net/udp/
Dudp_socket_unittest.cc130 IPEndPoint bind_address; in TEST_F() local
131 CreateUDPAddress("0.0.0.0", kPort, &bind_address); in TEST_F()
133 int rv = server.Listen(bind_address); in TEST_F()
175 IPEndPoint bind_address; in TEST_F() local
176 CreateUDPAddress("0.0.0.0", kPort1, &bind_address); in TEST_F()
178 int rv = server1.Listen(bind_address); in TEST_F()
182 CreateUDPAddress("0.0.0.0", kPort2, &bind_address); in TEST_F()
184 rv = server2.Listen(bind_address); in TEST_F()
272 IPEndPoint bind_address; in TEST_F() local
273 CreateUDPAddress("127.0.0.1", 0, &bind_address); in TEST_F()
[all …]
/external/openssh/
Dssh.07 ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]
8 [-D [bind_address:]port] [-e escape_char] [-F configfile] [-I pkcs11]
9 [-i identity_file] [-L [bind_address:]port:host:hostport]
11 [-R [bind_address:]port:host:hostport] [-S ctl_path] [-W host:port]
53 -b bind_address
54 Use bind_address on the local machine as the source address of
84 -D [bind_address:]port
87 side, optionally bound to the specified bind_address. Whenever a
99 the GatewayPorts setting. However, an explicit bind_address may
101 bind_address of ``localhost'' indicates that the listening port
[all …]
Dssh-agent.07 ssh-agent [-c | -s] [-d] [-a bind_address] [-t life] [command [arg ...]]
21 -a bind_address
22 Bind the agent to the UNIX-domain socket bind_address. The
Dreadconf.h92 char *bind_address; /* local socket address for connection to sshd */ member
Dsshconnect.c217 if (options.bind_address == NULL) in ssh_create_socket()
225 gaierr = getaddrinfo(options.bind_address, NULL, &hints, &res); in ssh_create_socket()
227 error("getaddrinfo: %s: %s", options.bind_address, in ssh_create_socket()
233 error("bind: %s: %s", options.bind_address, strerror(errno)); in ssh_create_socket()
Dssh_config.0200 The argument must be [bind_address:]port. IPv6 addresses can be
203 setting. However, an explicit bind_address may be used to bind
204 the connection to a specific address. The bind_address of
440 machine. The first argument must be [bind_address:]port and the
447 bind_address may be used to bind the connection to a specific
448 address. The bind_address of ``localhost'' indicates that the
555 machine. The first argument must be [bind_address:]port and the
565 If the bind_address is not specified, the default is to only bind
566 to loopback addresses. If the bind_address is `*' or an empty
568 interfaces. Specifying a remote bind_address will only succeed
Dreadconf.c644 charptr = &options->bind_address; in process_config_line()
1179 options->bind_address = NULL; in initialize_options()
Dssh.c598 options.bind_address = optarg; in main()
/external/chromium/third_party/libevent/
Dhttp-internal.h63 char *bind_address; /* address to use for binding the src */ member
Dhttp.c1013 if (evcon->bind_address != NULL) in evhttp_connection_free()
1014 free(evcon->bind_address); in evhttp_connection_free()
1033 if (evcon->bind_address) in evhttp_connection_set_local_address()
1034 free(evcon->bind_address); in evhttp_connection_set_local_address()
1035 if ((evcon->bind_address = strdup(address)) == NULL) in evhttp_connection_set_local_address()
1770 evcon->bind_address, evcon->bind_port, 0 /*reuse*/); in evhttp_connection_connect()
1773 __func__, evcon->bind_address)); in evhttp_connection_connect()