code = -1;
}
+ if ( options->MaxConn >= MAXCONNECTIONS )
+ {
+ log(LOG_ERR,"MaxConn option must be less than %d.", MAXCONNECTIONS);
+ code = -1;
+ }
+
if ( options->TrafficShaping != 0 && options->TrafficShaping != 1 )
{
log(LOG_ERR,"TrafficShaping option must be either 0 or 1.");
crypto_free_cipher_env(conn->b_crypto);
}
- if(conn->s > 0)
+ if(conn->s > 0) {
+ log(LOG_INFO,"connection_free(): closing fd %d.",conn->s);
close(conn->s);
+ }
free(conn);
}
fcntl(s, F_SETFL, O_NONBLOCK); /* set s to non-blocking */
conn = connection_new(type);
- if(!conn)
+ if(!conn) {
+ log(LOG_DEBUG,"connection_create_listener(): connection_new failed. Giving up.");
return -1;
+ }
conn->s = s;
if(connection_add(conn) < 0) { /* no space, forget it */
+ log(LOG_DEBUG,"connection_create_listener(): connection_add failed. Giving up.");
connection_free(conn);
return -1;
}
log(LOG_ERR,"connection_handle_listener_read(): accept() failed. Closing.");
return -1;
}
- log(LOG_DEBUG,"Connection accepted on socket %d.",news);
+ log(LOG_INFO,"Connection accepted on socket %d (child of fd %d).",news, conn->s);
fcntl(news, F_SETFL, O_NONBLOCK); /* set news to non-blocking */
if(connection_add(newconn) < 0) { /* no space, forget it */
connection_free(newconn);
- return -1;
+ return 0; /* no need to tear down the parent */
}
log(LOG_DEBUG,"connection_handle_listener_read(): socket %d entered state %d.",newconn->s, new_state);
int connection_add(connection_t *conn) {
- if(nfds >= MAXCONNECTIONS-2) { /* 2, for some breathing room. should count the fenceposts. */
- /* FIXME should use the 'max connections' option */
+ if(nfds >= options.MaxConn-1) {
log(LOG_INFO,"connection_add(): failing because nfds is too high.");
return -1;
}
log(LOG_INFO,"connection_add(): new conn type %d, socket %d, nfds %d.",conn->type, conn->s, nfds);
return 0;
-
}
void connection_set_poll_socket(connection_t *conn) {
current_index = conn->poll_index;
if(current_index == nfds-1) { /* this is the end */
-// connection_free(conn);
nfds--;
return 0;
}