HomeSort by: relevance | last modified time | path
    Searched defs:connection_out (Results 1 - 3 of 3) sorted by relevancy

  /src/crypto/external/bsd/openssh/dist/
serverloop.c 169 int connection_in, int connection_out, struct pollfd **pfdp,
230 (*pfdp)[1].fd = connection_out;
308 process_output(struct ssh *ssh, int connection_out)
354 u_int connection_in, connection_out; local
369 connection_out = ssh_packet_get_connection_out(ssh);
392 wait_until_can_do_something(ssh, connection_in, connection_out,
406 process_output(ssh, connection_out);
clientloop.c 157 static int connection_out; /* Connection to server (output). */ variable
721 (*pfdp)[1].fd = connection_out;
1510 connection_out = ssh_packet_get_connection_out(ssh);
packet.c 111 * reading; connection_out for writing. These can be the same
115 int connection_out; member in struct:session_state
242 state->connection_out = -1;
308 state->connection_out = fd_out;
441 if (state->connection_in == -1 || state->connection_out == -1)
444 if (state->connection_in == state->connection_out)
453 if (getpeername(state->connection_out, (struct sockaddr *)&to,
475 return get_sock_af(ssh->state->connection_out);
486 if (ssh->state->connection_out != ssh->state->connection_in)
487 set_nonblock(ssh->state->connection_out);
    [all...]

Completed in 23 milliseconds