MCPcopy Create free account
hub / github.com/apache/httpd / x_process_connection

Function x_process_connection

modules/examples/mod_example_hooks.c:1137–1141  ·  view source on GitHub ↗

This routine is used to actually process the connection that was received. * Only protocol modules should implement this hook, as it gives them an * opportunity to replace the standard HTTP processing with processing for * some other protocol. Both echo and POP3 modules are available as * examples. * * This is a RUN_FIRST hook. */

Source from the content-addressed store, hash-verified

1135 * This is a RUN_FIRST hook.
1136 */
1137static int x_process_connection(conn_rec *c)
1138{
1139 trace_connection(c, "x_process_connection()");
1140 return DECLINED;
1141}
1142
1143/*
1144 * This routine is called after the request has been read but before any other

Callers

nothing calls this directly

Calls 1

trace_connectionFunction · 0.85

Tested by

no test coverage detected