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. */
| 1135 | * This is a RUN_FIRST hook. |
| 1136 | */ |
| 1137 | static 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 |
nothing calls this directly
no test coverage detected