blob: 3d50237a15357d76b275cf1e878874c5aa4897ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Parser: module {
Runeself : con 16r80;
Word : con 1;
PATH: con "/dis/svc/httpd/parser.dis";
init: fn();
urlunesc: fn(s: string): string;
fail: fn(g: ref Httpd->Private_info,reason: int, message: string);
logit: fn(g: ref Httpd->Private_info, message: string );
notmodified: fn(g: ref Httpd->Private_info);
httpheaders: fn(g: ref Httpd->Private_info, vers: string);
urlconv: fn(url : string): string;
okheaders: fn(g: ref Httpd->Private_info);
};
|