Home
last modified time | relevance | path

Searched refs:connection_in (Results 1 – 3 of 3) sorted by relevance

/freebsd/crypto/openssh/
H A Dserverloop.c151 int connection_in, int connection_out, struct pollfd **pfdp, in wait_until_can_do_something() argument
213 (*pfdp)[0].fd = connection_in; in wait_until_can_do_something()
267 process_input(struct ssh *ssh, int connection_in) in process_input() argument
271 if ((r = ssh_packet_process_read(ssh, connection_in)) == 0) in process_input()
339 u_int connection_in, connection_out; in server_loop2() local
354 connection_in = ssh_packet_get_connection_in(ssh); in server_loop2()
378 wait_until_can_do_something(ssh, connection_in, connection_out, in server_loop2()
386 process_input(ssh, connection_in) < 0) in server_loop2()
H A Dpacket.c121 int connection_in; member
249 state->connection_in = -1; in ssh_alloc_session_state()
315 state->connection_in = fd_in; in ssh_packet_set_connection()
449 if (state->connection_in == -1 || state->connection_out == -1) in ssh_packet_connection_is_on_socket()
452 if (state->connection_in == state->connection_out) in ssh_packet_connection_is_on_socket()
456 if (getpeername(state->connection_in, (struct sockaddr *)&from, in ssh_packet_connection_is_on_socket()
492 set_nonblock(ssh->state->connection_in); in ssh_packet_set_nonblocking()
494 if (ssh->state->connection_out != ssh->state->connection_in) in ssh_packet_set_nonblocking()
503 return ssh->state->connection_in; in ssh_packet_get_connection_in()
527 sock = ssh->state->connection_in; in ssh_remote_ipaddr()
[all …]
H A Dclientloop.c146 static int connection_in; /* Connection to server (input). */ variable
708 (*pfdp)[0].fd = connection_in; in client_wait_until_can_do_something()
796 if ((r = ssh_packet_process_read(ssh, connection_in)) == 0) in client_process_net_input()
1506 connection_in = ssh_packet_get_connection_in(ssh); in client_loop()