static void on_accept(h2o_socket_t *listener, int status) { struct listener_ctx_t *ctx = listener->data; struct config_t *conf = H2O_STRUCT_FROM_MEMBER(struct config_t, global_config, ctx->ctx->global_config); int num_accepts = 16; if (status == -1) { return; } do { h2o_socket_t *sock; if (conf->state.num_connections >= conf->max_connections) break; if ((sock = h2o_evloop_socket_accept(listener)) == NULL) { break; } __sync_add_and_fetch(&conf->state.num_connections, 1); if (ctx->ssl_ctx != NULL) h2o_accept_ssl(ctx->ctx, sock, ctx->ssl_ctx); else h2o_http1_accept(ctx->ctx, sock); } while (--num_accepts != 0); }
static void on_accept(h2o_socket_t *listener, int status) { h2o_socket_t *sock; if (status == -1) { return; } if ((sock = h2o_evloop_socket_accept(listener)) == NULL) { return; } if (ssl_ctx != NULL) h2o_accept_ssl(&ctx, sock, ssl_ctx); else h2o_http1_accept(&ctx, sock); }
static void on_connect(uv_stream_t *server, int status) { uv_tcp_t *conn; h2o_socket_t *sock; if (status != 0) return; conn = h2o_malloc(sizeof(*conn)); uv_tcp_init(server->loop, conn); if (uv_accept(server, (uv_stream_t*)conn) != 0) { uv_close((uv_handle_t*)conn, (uv_close_cb)free); return; } sock = h2o_uv_socket_create((uv_stream_t*)conn, (uv_close_cb)free); if (ssl_ctx != NULL) h2o_accept_ssl(&ctx, sock, ssl_ctx); else h2o_http1_accept(&ctx, sock); }
static void on_accept(uv_stream_t *listener, int status) { uv_tcp_t *conn; h2o_socket_t *sock; if (status != 0) return; conn = h2o_mem_alloc(sizeof(*conn)); uv_tcp_init(listener->loop, conn); if (uv_accept(listener, (uv_stream_t *)conn) != 0) { uv_close((uv_handle_t *)conn, (uv_close_cb)free); return; } sock = h2o_uv_socket_create((uv_stream_t *)conn, NULL, 0, (uv_close_cb)free); if (ssl_ctx != NULL) h2o_accept_ssl(&ctx, ctx.globalconf->hosts, sock, ssl_ctx); else h2o_http1_accept(&ctx, ctx.globalconf->hosts, sock); }