Lines Matching refs:handler_t
8 static handler_t x(server *srv, void *p_d)
11 static handler_t x(server *srv, connection *con, void *p_d)
35 handler_t (* set_defaults) (server *srv, void *p_d);
36 handler_t (* cleanup) (server *srv, void *p_d);
38 …handler_t (* handle_trigger) (server *srv, void *p_d); /* once a secon…
39 …handler_t (* handle_sighup) (server *srv, void *p_d); /* at a signup …
41 …handler_t (* handle_uri_raw) (server *srv, connection *con, void *p_d); /* after uri_ra…
42 …handler_t (* handle_uri_clean) (server *srv, connection *con, void *p_d); /* after uri is…
43 …handler_t (* handle_docroot) (server *srv, connection *con, void *p_d); /* getting the …
44 …handler_t (* handle_physical) (server *srv, connection *con, void *p_d); /* mapping url …
45 …handler_t (* handle_request_done) (server *srv, connection *con, void *p_d); /* at the end o…
46 …handler_t (* handle_connection_close)(server *srv, connection *con, void *p_d); /* at the end o…
47 …handler_t (* handle_joblist) (server *srv, connection *con, void *p_d); /* after all ev…
51 handler_t (* handle_subrequest_start)(server *srv, connection *con, void *p_d);
56 handler_t (* handle_subrequest) (server *srv, connection *con, void *p_d); /* */
57 handler_t (* connection_reset) (server *srv, connection *con, void *p_d); /* */
67 handler_t plugins_call_handle_uri_raw(server *srv, connection *con);
68 handler_t plugins_call_handle_uri_clean(server *srv, connection *con);
69 handler_t plugins_call_handle_subrequest_start(server *srv, connection *con);
70 handler_t plugins_call_handle_subrequest(server *srv, connection *con);
71 handler_t plugins_call_handle_request_done(server *srv, connection *con);
72 handler_t plugins_call_handle_docroot(server *srv, connection *con);
73 handler_t plugins_call_handle_physical(server *srv, connection *con);
74 handler_t plugins_call_handle_connection_close(server *srv, connection *con);
75 handler_t plugins_call_handle_joblist(server *srv, connection *con);
76 handler_t plugins_call_connection_reset(server *srv, connection *con);
78 handler_t plugins_call_handle_trigger(server *srv);
79 handler_t plugins_call_handle_sighup(server *srv);
81 handler_t plugins_call_init(server *srv);
82 handler_t plugins_call_set_defaults(server *srv);
83 handler_t plugins_call_cleanup(server *srv);