summaryrefslogtreecommitdiff
path: root/appl/svc/httpd/cache.m
blob: 15c6c59eac45a4bfac263d875bc4b3727404a3a6 (plain)
1
2
3
4
5
6
7
8
9
Cache : module
{
	PATH: con "/dis/svc/httpd/cache.dis";

	cache_init: fn(log : ref Sys->FD,  size : int);
	insert : fn(name: string, ctents: array of byte, length : int, qid:Sys->Qid) : int;
	find: fn(name : string, qid:Sys->Qid) : (int,array of byte);
	dump : fn() : list of (string,int,int);
};