Home
last modified time | relevance | path

Searched refs:plugin_ctx (Results 1 – 10 of 10) sorted by relevance

/mOS-networking-stack/samples/lighttpd-1.4.32/src/
H A Dmod_setenv.c164 if (con->plugin_ctx[p->id]) { in URIHANDLER_FUNC()
165 hctx = con->plugin_ctx[p->id]; in URIHANDLER_FUNC()
169 con->plugin_ctx[p->id] = hctx; in URIHANDLER_FUNC()
223 if (con->plugin_ctx[p->id]) { in CONNECTION_FUNC()
224 handler_ctx_free(con->plugin_ctx[p->id]); in CONNECTION_FUNC()
225 con->plugin_ctx[p->id] = NULL; in CONNECTION_FUNC()
H A Dmod_rewrite.c338 if (con->plugin_ctx[p->id]) { in URIHANDLER_FUNC()
339 handler_ctx_free(con->plugin_ctx[p->id]); in URIHANDLER_FUNC()
340 con->plugin_ctx[p->id] = NULL; in URIHANDLER_FUNC()
350 if (con->plugin_ctx[p->id]) { in process_rewrite_rules()
351 hctx = con->plugin_ctx[p->id]; in process_rewrite_rules()
432 if (con->plugin_ctx[p->id] == NULL) { in process_rewrite_rules()
434 con->plugin_ctx[p->id] = hctx; in process_rewrite_rules()
436 hctx = con->plugin_ctx[p->id]; in process_rewrite_rules()
H A Dmod_extforward.c447 if (con->plugin_ctx[p->id]) { in URIHANDLER_FUNC()
450 handler_ctx_free(con->plugin_ctx[p->id]); in URIHANDLER_FUNC()
451 con->plugin_ctx[p->id] = NULL; in URIHANDLER_FUNC()
454 con->plugin_ctx[p->id] = handler_ctx_init(con->dst_addr, con->dst_addr_buf); in URIHANDLER_FUNC()
479 handler_ctx *hctx = con->plugin_ctx[p->id]; in CONNECTION_FUNC()
490 con->plugin_ctx[p->id] = NULL; in CONNECTION_FUNC()
H A Dmod_mysql_vhost.c125 plugin_connection_data *c = con->plugin_ctx[p->id]; in mod_mysql_vhost_connection_data()
142 return con->plugin_ctx[p->id] = c; in mod_mysql_vhost_connection_data()
148 plugin_connection_data *c = con->plugin_ctx[p->id]; in CONNECTION_FUNC()
166 con->plugin_ctx[p->id] = NULL; in CONNECTION_FUNC()
H A Dmod_cgi.c552 con->plugin_ctx[p->id] = NULL; in cgi_connection_close()
619 return cgi_connection_close(srv, con->plugin_ctx[p->id]); in cgi_connection_close_callback()
1174 con->plugin_ctx[p->id] = hctx; in cgi_create_env()
1191 con->plugin_ctx[p->id] = NULL; in cgi_create_env()
1345 handler_ctx *hctx = con->plugin_ctx[p->id]; in SUBREQUEST_FUNC()
1393 con->plugin_ctx[p->id] = NULL; in SUBREQUEST_FUNC()
1425 con->plugin_ctx[p->id] = NULL; in SUBREQUEST_FUNC()
H A Dmod_proxy.c357 con->plugin_ctx[p->id] = NULL; in proxy_connection_close()
904 handler_ctx *hctx = con->plugin_ctx[p->id]; in SUBREQUEST_FUNC()
1310 con->plugin_ctx[p->id] = hctx; in mod_proxy_check_extension()
1339 proxy_connection_close(srv, con->plugin_ctx[p->id]); in mod_proxy_connection_close_callback()
H A Dmod_scgi.c1231 con->plugin_ctx[p->id] = NULL; in scgi_connection_cleanup()
1283 scgi_connection_cleanup(srv, con->plugin_ctx[p->id]); in scgi_connection_reset()
2375 handler_ctx *hctx = con->plugin_ctx[p->id]; in SUBREQUEST_FUNC()
2808 con->plugin_ctx[p->id] = hctx; in scgi_check_extension()
2867 con->plugin_ctx[p->id] = hctx; in scgi_check_extension()
2893 handler_ctx *hctx = con->plugin_ctx[p->id]; in JOBLIST_FUNC()
2924 return scgi_connection_close(srv, con->plugin_ctx[p->id]); in scgi_connection_close_callback()
H A Dconnections.c732 con->plugin_ctx = calloc(1, (srv->plugins.used + 1) * sizeof(void *));
787 free(con->plugin_ctx);
889 if (con->plugin_ctx[pd->id] != NULL) {
893 con->plugin_ctx[pd->id] = NULL;
H A Dmod_fastcgi.c1501 con->plugin_ctx[p->id] = NULL; in fcgi_connection_close()
1565 fcgi_connection_close(srv, con->plugin_ctx[p->id]); in fcgi_connection_reset()
2179 handler_ctx *hctx = con->plugin_ctx[p->id]; in fcgi_response_parse()
3111 handler_ctx *hctx = con->plugin_ctx[p->id]; in SUBREQUEST_FUNC()
3604 con->plugin_ctx[p->id] = hctx; in fcgi_check_extension()
3671 con->plugin_ctx[p->id] = hctx; in fcgi_check_extension()
3695 handler_ctx *hctx = con->plugin_ctx[p->id]; in JOBLIST_FUNC()
3726 fcgi_connection_close(srv, con->plugin_ctx[p->id]); in fcgi_connection_close_callback()
H A Dbase.h430 void **plugin_ctx; /* plugin connection specific config */ member