code: purgatorio

ref: 654935ba71201d7215d9fcd96181a330ec6ff617
dir: /module/filter.m/

View raw version
Filter: module
{
	DEFLATEPATH: con "/dis/lib/deflate.dis";
	INFLATEPATH: con "/dis/lib/inflate.dis";
	SLIPPATH: con "/dis/lib/slip.dis";

	Rq: adt {
		pick {
		Start =>
			pid: int;
		Fill or Result =>
			buf: array of byte;
			reply: chan of int;
		Info =>
			msg: string;
		Finished =>
			buf: array of byte;
		Error =>
			e: string;
		}
	};

	init: fn();
	start: fn(param: string): chan of ref Rq;
};