예제 #1
0
파일: udp.c 프로젝트: dhootha/akaros
static void udpcreate(struct conv *c)
{
	c->rq = qopen(128 * 1024, Qmsg, 0, 0);
	c->wq = qbypass(udpkick, c);
}
예제 #2
0
파일: gre.c 프로젝트: 8l/inferno
static void
grecreate(Conv *c)
{
	c->rq = qopen(64*1024, Qmsg, 0, c);
	c->wq = qbypass(grekick, c);
}