Searched refs:connection_in (Results 1 – 3 of 3) sorted by relevance
/freebsd/crypto/openssh/ |
H A D | serverloop.c | 146 int connection_in, int connection_out, struct pollfd **pfdp, in wait_until_can_do_something() argument 205 (*pfdp)[0].fd = connection_in; in wait_until_can_do_something() 259 process_input(struct ssh *ssh, int connection_in) in process_input() argument 263 if ((r = ssh_packet_process_read(ssh, connection_in)) == 0) in process_input() 324 u_int connection_in, connection_out; in server_loop2() local 333 connection_in = ssh_packet_get_connection_in(ssh); in server_loop2() 353 wait_until_can_do_something(ssh, connection_in, connection_out, in server_loop2() 361 process_input(ssh, connection_in) < 0) in server_loop2()
|
H A D | packet.c | 129 int connection_in; member 247 state->connection_in = -1; in ssh_alloc_session_state() 311 state->connection_in = fd_in; in ssh_packet_set_connection() 445 if (state->connection_in == -1 || state->connection_out == -1) in ssh_packet_connection_is_on_socket() 448 if (state->connection_in == state->connection_out) in ssh_packet_connection_is_on_socket() 452 if (getpeername(state->connection_in, (struct sockaddr *)&from, in ssh_packet_connection_is_on_socket() 488 set_nonblock(ssh->state->connection_in); in ssh_packet_set_nonblocking() 490 if (ssh->state->connection_out != ssh->state->connection_in) in ssh_packet_set_nonblocking() 499 return ssh->state->connection_in; in ssh_packet_get_connection_in() 523 sock = ssh->state->connection_in; in ssh_remote_ipaddr() [all …]
|
H A D | clientloop.c | 159 static int connection_in; /* Connection to server (input). */ variable 711 (*pfdp)[0].fd = connection_in; in client_wait_until_can_do_something() 799 if ((r = ssh_packet_process_read(ssh, connection_in)) == 0) in client_process_net_input() 1496 connection_in = ssh_packet_get_connection_in(ssh); in client_loop()
|