1a82e1 | 2000-08-01 | Johan Sundström | | inherit "module";
|
851b57 | 2000-08-19 | Per Hedbor | | constant cvs_version = "$Id: last.pike,v 1.2 2000/08/19 08:52:40 per Exp $";
|
1a82e1 | 2000-08-01 | Johan Sundström | | 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;
|
851b57 | 2000-08-19 | Per Hedbor | | mapping|int(0..1) last_resort(RequestID id)
|
1a82e1 | 2000-08-01 | Johan Sundström | |
{
seen_requests++;
}
string status()
{
return sprintf("<b>%d</b> requests have fallen through to this "
"module.", seen_requests);
}
|