1a82e1 | 2000-08-01 | Johan Sundström | | inherit "module";
constant cvs_version = "$Id: last.pike,v 1.1 2000/08/01 15:37:40 jhs Exp $";
constant module_type = MODULE_LAST;
constant module_name = "RefDoc for MODULE_LAST";
constant module_doc = "This module does nothing, but its inlined "
"documentation gets imported into the roxen "
"programmer manual. You hardly want to add "
"this module to your virtual servers.";
int seen_requests;
mapping|int[0..1] last_resort(RequestID id)
{
seen_requests++;
}
string status()
{
return sprintf("<b>%d</b> requests have fallen through to this "
"module.", seen_requests);
}
|