Home | History | Annotate | Download | only in dist

Lines Matching defs:Connection

88 /* The number of seconds after which to give up on a TCP connection */
99 * Keep a connection structure for each file descriptor. The state
102 typedef struct Connection {
103 u_char c_status; /* State of connection on this file desc. */
110 char *c_name; /* Hostname of connection for errors */
112 char *c_output_name; /* Hostname of connection for output */
113 struct ssh *c_ssh; /* SSH-connection */
114 struct timespec c_ts; /* Time at which connection gets aborted */
115 TAILQ_ENTRY(Connection) c_link; /* List of connections in timeout order. */
118 TAILQ_HEAD(conlist, Connection) tq; /* Timeout Queue */
484 error("%s: Connection closed by remote host", c->c_name);