Lines Matching defs:new_fd
2979 int new_fd;
2982 new_fd = accept(c->fd, (struct sockaddr*)addr, addrlen);
2985 new_fd = accept4(c->fd, (struct sockaddr*)addr, addrlen, SOCK_NONBLOCK);
2987 if(new_fd == -1) {
3067 sock_close(new_fd);
3072 fd_set_nonblock(new_fd);
3074 return new_fd;
3207 int new_fd;
3270 new_fd = comm_point_perform_accept(c, &c_hdl->repinfo.remote_addr,
3272 if(new_fd == -1) {
3286 c_hdl->ssl = incoming_ssl_fd(c->ssl, new_fd);
3288 c_hdl->fd = new_fd;
3311 setup_tcp_handler(c_hdl, new_fd, c->cur_tcp_count, c->max_tcp_count);