inline int tcl_handler()

in tcl_core.c [788:795]


inline int tcl_handler(request_rec *r)
{
	if (strcmp("tcl-handler", r->handler)) {
		return DECLINED;
	}
	
	return run_handler(r, 8);
}