code: plan9front

ref: 5622b0bbd878dbc34045cc6fd37cffa64461eabe
dir: /sys/src/libsunrpc/suncall.c/

View raw version
#include <u.h>
#include <libc.h>
#include <thread.h>
#include <sunrpc.h>

void
sunCallSetup(SunCall *c, SunProg *prog, uint proc)
{
	c->rpc.prog = prog->prog;
	c->rpc.vers = prog->vers;
	c->rpc.proc = proc>>1;
	c->rpc.iscall = !(proc&1);
	c->type = proc;
}