Sun, 19 Feb 2017 11:56:39 +0100
adds new tool for webserver control
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright 2013 Olaf Wintermann. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #ifndef EVENT_H #define EVENT_H #include "../public/nsapi.h" #include <ucx/string.h> #ifdef __cplusplus extern "C" { #endif #define EVENT_POLLIN 0x1 #define EVENT_POLLOUT 0x2 typedef struct event_handler event_handler_t; typedef struct event event_t; typedef int(*event_func)(event_handler_t*, event_t*); struct event { pblock *pb; Session *sn; Request *rq; event_func fn; event_func finish; intptr_t object; int events; int poll; void *cookie; int error; }; typedef struct event_handler_conf { sstr_t name; int nthreads; int isdefault; } EventHandlerConfig; typedef struct event_handler_object { event_handler_t *handler; int nthreads; } EventHandlerObject; int create_event_handler(EventHandlerConfig *cfg); int check_event_handler_cfg(); event_handler_t* get_default_event_handler(); event_handler_t* get_event_handler(char *name); /* implementation in event_$platform */ event_handler_t* evhandler_create(int numthreads); int ev_pollin(event_handler_t *h, int fd, event_t *event); int ev_pollout(event_handler_t *h, int fd, event_t *event); int evt_send(event_handler_t *h, event_t *event); #ifdef __cplusplus } #endif #endif /* EVENT_H */