Lines Matching refs:Connection
70 /* The number of seconds after which to give up on a TCP connection */
84 * Keep a connection structure for each file descriptor. The state
87 typedef struct Connection {
88 u_char c_status; /* State of connection on this file desc. */
100 char *c_name; /* Hostname of connection for errors */
102 char *c_output_name; /* Hostname of connection for output */
104 struct ssh *c_ssh; /* SSH-connection */
105 struct timeval c_tv; /* Time at which connection gets aborted */
106 TAILQ_ENTRY(Connection) c_link; /* List of connections in timeout order. */
109 TAILQ_HEAD(conlist, Connection) tq; /* Timeout Queue */
501 error("%s: Connection closed by remote host", c->c_name);