Home
last modified time | relevance | path

Searched refs:connection_out (Results 1 – 4 of 4) sorted by relevance

/external/openssh/
Dserverloop.c199 wait_until_can_do_something(int connection_in, int connection_out, in wait_until_can_do_something() argument
245 FD_SET(connection_out, *writesetp); in wait_until_can_do_something()
316 process_output(fd_set *writeset, int connection_out) in process_output() argument
319 if (FD_ISSET(connection_out, writeset)) in process_output()
356 u_int nalloc = 0, connection_in, connection_out; in server_loop2() local
364 connection_out = packet_get_connection_out(); in server_loop2()
374 max_fd = MAXIMUM(connection_in, connection_out); in server_loop2()
391 wait_until_can_do_something(connection_in, connection_out, in server_loop2()
405 process_output(writeset, connection_out); in server_loop2()
Dpacket.c118 int connection_out; member
246 state->connection_out = -1; in ssh_alloc_session_state()
308 state->connection_out = fd_out; in ssh_packet_set_connection()
436 if (state->connection_in == -1 || state->connection_out == -1) in ssh_packet_connection_is_on_socket()
440 if (state->connection_in == state->connection_out) in ssh_packet_connection_is_on_socket()
449 if (getpeername(state->connection_out, (struct sockaddr *)&to, in ssh_packet_connection_is_on_socket()
475 if (getsockname(ssh->state->connection_out, (struct sockaddr *)&to, in ssh_packet_connection_af()
494 if (ssh->state->connection_out != ssh->state->connection_in) in ssh_packet_set_nonblocking()
495 set_nonblock(ssh->state->connection_out); in ssh_packet_set_nonblocking()
511 return ssh->state->connection_out; in ssh_packet_get_connection_out()
[all …]
Dsshconnect.c524 send_client_banner(int connection_out, int minor1) in send_client_banner() argument
534 if (atomicio(vwrite, connection_out, client_version_string, in send_client_banner()
551 int connection_out = packet_get_connection_out(); in ssh_exchange_identification() local
568 send_client_banner(connection_out, 0); in ssh_exchange_identification()
681 send_client_banner(connection_out, minor1); in ssh_exchange_identification()
Dclientloop.c165 static int connection_out; /* Connection to server (output). */ variable
659 FD_SET(connection_out, *writesetp); in client_wait_until_can_do_something()
1553 connection_out = packet_get_connection_out(); in client_loop()
1554 max_fd = MAXIMUM(connection_in, connection_out); in client_loop()
1690 if (FD_ISSET(connection_out, writeset)) in client_loop()