Searched refs:connection_in (Results 1 – 3 of 3) sorted by relevance
| /openbsd/src/usr.bin/ssh/ |
| D | serverloop.c | 140 int connection_in, int connection_out, struct pollfd **pfdp, in wait_until_can_do_something() argument 199 (*pfdp)[0].fd = connection_in; in wait_until_can_do_something() 253 process_input(struct ssh *ssh, int connection_in) in process_input() argument 257 if ((r = ssh_packet_process_read(ssh, connection_in)) == 0) in process_input() 318 u_int connection_in, connection_out; in server_loop2() local 327 connection_in = ssh_packet_get_connection_in(ssh); in server_loop2() 347 wait_until_can_do_something(ssh, connection_in, connection_out, in server_loop2() 355 process_input(ssh, connection_in) < 0) in server_loop2()
|
| D | packet.c | 108 int connection_in; member 226 state->connection_in = -1; in ssh_alloc_session_state() 290 state->connection_in = fd_in; in ssh_packet_set_connection() 424 if (state->connection_in == -1 || state->connection_out == -1) in ssh_packet_connection_is_on_socket() 427 if (state->connection_in == state->connection_out) in ssh_packet_connection_is_on_socket() 431 if (getpeername(state->connection_in, (struct sockaddr *)&from, in ssh_packet_connection_is_on_socket() 467 set_nonblock(ssh->state->connection_in); in ssh_packet_set_nonblocking() 469 if (ssh->state->connection_out != ssh->state->connection_in) in ssh_packet_set_nonblocking() 478 return ssh->state->connection_in; in ssh_packet_get_connection_in() 502 sock = ssh->state->connection_in; in ssh_remote_ipaddr() [all …]
|
| D | clientloop.c | 150 static int connection_in; /* Connection to server (input). */ variable 703 (*pfdp)[0].fd = connection_in; in client_wait_until_can_do_something() 791 if ((r = ssh_packet_process_read(ssh, connection_in)) == 0) in client_process_net_input() 1488 connection_in = ssh_packet_get_connection_in(ssh); in client_loop()
|