Home
last modified time | relevance | path

Searched refs:handler (Results 1 – 23 of 23) sorted by relevance

/mOS-networking-stack/samples/lighttpd-1.4.32/tests/
H A D404-handler.conf45 server.error-handler-404 = "/404.html"
48 server.error-handler-404 = "/404.pl"
H A DMakefile.am54 core-404-handler.t \
55 404-handler.conf
H A Dbug-12.conf47 server.error-handler-404 = "/indexfile/return-404.php"
H A DMakefile.in630 core-404-handler.t \
631 404-handler.conf
/mOS-networking-stack/samples/lighttpd-1.4.32/src/
H A Dfdevent.c132 fdevent_register(fdevents *ev, int fd, fdevent_handler handler, void *ctx) in fdevent_register() argument
137 fdn->handler = handler; in fdevent_register()
222 return ev->fdarray[fd]->handler; in fdevent_get_handler()
H A Dfdevent.h92 fdevent_handler handler; member
197 int fdevent_register(fdevents *ev, int fd, fdevent_handler handler, void *ctx);
H A Dserver.c950 fdevent_handler handler; in start_server() local
960 handler = fdevent_get_handler(srv->ev, fd); in start_server()
968 switch (r = (*handler)(srv, context, revents)) { in start_server()
2182 fdevent_handler handler; in main() local
2192 handler = fdevent_get_handler(srv->ev, fd); in main()
2200 switch (r = (*handler)(srv, context, revents)) { in main()
H A Dfdevent_libev.c21 switch (r = (*fdn->handler)(ev->srv, fdn->ctx, r)) { in io_watcher_cb()
/mOS-networking-stack/samples/lighttpd-1.4.32/
H A DINSTALL76 - server.event-handler
110 - server.event-handler ("linux-sysepoll")
141 - server.event-handler ("linux-sysepoll")
H A DNEWS94 * add libev fdevent handler: server.event-handler = "libev"
518 * removed warning about a 404-error-handler
796 * fixed cgi.assign with empty handler
870 * fixed kqueue event-handler
894 * added the exec command to the SSI handler
915 * added a error-handler for 404 codes
964 * fixed double-free in fastcgi handler
965 * fixed error-handling in cgi handler
1035 * fixed SSL network handler
1036 * fixed writev() network handler
[all …]
/mOS-networking-stack/samples/lighttpd-1.4.32/doc/outdated/
H A Dconfiguration.txt381 server.event-handler
382 set the event handler
400 which are fairly loaded and the network handler calls delay often (e.g. new
433 server.error-handler-404
440 server.error-handler-404 = "/error-404.php"
H A Dcgi.txt43 just don't specify a handler for the extension. ::
H A Dperformance.txt84 The event handler can be set by specifying the 'Config Value' from above
85 in the ``server.event-handler`` variable
89 server.event-handler = "linux-sysepoll"
H A Dplugins.txt66 called after the physical path is created and no other handler is
93 ``lib`` is the library handler from dlopen and ``data`` will be the storage
H A Dproxy.txt50 file-extension can have its own handler. Load-Balancing is
H A Dfastcgi.txt89 file-extension can have it own handler. Load-Balancing is
/mOS-networking-stack/samples/lighttpd-1.4.32/doc/config/
H A Dlighttpd.orig.conf181 server.event-handler = "linux-sysepoll"
H A Dlighttpd.conf185 server.event-handler = "linux-sysepoll"
H A Dm-lighttpd.conf186 server.event-handler = "mtcp-epoll"
/mOS-networking-stack/core/src/include/
H A Dmtcp_api.h184 mtcp_register_signal(int signum, mtcp_sighandler_t handler);
/mOS-networking-stack/core/include/
H A Dmtcp_api.h184 mtcp_register_signal(int signum, mtcp_sighandler_t handler);
/mOS-networking-stack/samples/lighttpd-1.4.32/m4/
H A Dltoptions.m426 # matching handler defined, dispatch to it. Other OPTION-NAMEs are
59 # with MACRO-NAME. If any OPTION has a matching handler declared with
77 dnl we run the default mode handler for the pair. For example, if neither
/mOS-networking-stack/core/src/
H A Dcore.c1623 mtcp_register_signal(int signum, mtcp_sighandler_t handler) in mtcp_register_signal() argument
1629 app_signal_handler = handler; in mtcp_register_signal()
1631 if ((prev = signal(signum, handler)) == SIG_ERR) { in mtcp_register_signal()