HomeSort by relevance Sort by last modified time
    Searched refs:connection_out (Results 1 - 4 of 4) sorted by null

  /external/openssh/
packet.c 107 * reading; connection_out for writing. These can be the same
111 int connection_out; member in struct:session_state
205 s->connection_out = -1;
225 active_state->connection_out = fd_out;
297 if (active_state->connection_in == active_state->connection_out)
306 if (getpeername(active_state->connection_out, (struct sockaddr *)&to,
432 if (getsockname(active_state->connection_out, (struct sockaddr *)&to,
453 if (active_state->connection_out != active_state->connection_in)
454 set_nonblock(active_state->connection_out);
470 return active_state->connection_out;
    [all...]
serverloop.c 106 static int connection_out; /* Connection to client (output). */ variable
343 FD_SET(connection_out, *writesetp);
505 if (FD_ISSET(connection_out, writeset))
593 connection_out = packet_get_connection_out();
607 max_fd = MAX(connection_in, connection_out);
694 max_fd = MAX(connection_in, connection_out);
829 connection_out = packet_get_connection_out();
839 max_fd = MAX(connection_in, connection_out);
    [all...]
clientloop.c 160 static int connection_out; /* Connection to server (output). */ variable
604 FD_SET(connection_out, *writesetp);
    [all...]
sshconnect.c 442 int connection_out = packet_get_connection_out(); local
560 if (roaming_atomicio(vwrite, connection_out, buf, strlen(buf))
    [all...]

Completed in 332 milliseconds