shithub: plan9front

ref: a0d12784bd6493e9e05c98a66d65837de82f8bda
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;
}