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

Function imap_handler

modules/mappers/mod_imagemap.c:868–881  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

866}
867
868static int imap_handler(request_rec *r)
869{
870 /* Optimization: skip the allocation of large local variables on the
871 * stack (in imap_handler_internal()) on requests that aren't using
872 * imagemaps
873 */
874 if (r->method_number != M_GET || (strcmp(r->handler,IMAP_MAGIC_TYPE)
875 && strcmp(r->handler, "imap-file"))) {
876 return DECLINED;
877 }
878 else {
879 return imap_handler_internal(r);
880 }
881}
882
883static void register_hooks(apr_pool_t *p)
884{

Callers

nothing calls this directly

Calls 1

imap_handler_internalFunction · 0.85

Tested by

no test coverage detected