if (s->tcp_keepalive.enabled)
commSetTcpKeepalive(params.conn->fd, s->tcp_keepalive.idle, s->tcp_keepalive.interval, s->tcp_keepalive.timeout);
- ++incoming_sockets_accepted;
-
// Socket is ready, setup the connection manager to start using it
auto *srv = Http::NewServer(xact);
AsyncJob::Start(srv); // usually async-calls readSomeData()
if (s->tcp_keepalive.enabled) {
commSetTcpKeepalive(params.conn->fd, s->tcp_keepalive.idle, s->tcp_keepalive.interval, s->tcp_keepalive.timeout);
}
- ++incoming_sockets_accepted;
// Socket is ready, setup the connection manager to start using it
auto *srv = Https::NewServer(xact);
}
Must(sock >= 0);
+ ++incoming_sockets_accepted;
// Sync with Comm ASAP so that abandoned details can properly close().
// XXX : these are not all HTTP requests. use a note about type and ip:port details->
if (s->tcp_keepalive.enabled)
commSetTcpKeepalive(params.conn->fd, s->tcp_keepalive.idle, s->tcp_keepalive.interval, s->tcp_keepalive.timeout);
- ++incoming_sockets_accepted;
-
AsyncJob::Start(new Server(xact));
}
debugs(33, 4, "accepted " << params.conn);
fd_note(params.conn->fd, "passive client ftp data");
- ++incoming_sockets_accepted;
if (!clientConnection) {
debugs(33, 5, "late data connection?");