shithub: riscv

ref: c8cf0cee47914699e3e7c10a7b7501af94b53b4e
dir: /sys/src/libauthsrv/_asgetticket.c/

View raw version
#include <u.h>
#include <libc.h>
#include <authsrv.h>

static char *pbmsg = "AS protocol botch";

int
_asgetticket(int fd, char *trbuf, char *tbuf)
{
	if(write(fd, trbuf, TICKREQLEN) < 0){
		werrstr(pbmsg);
		return -1;
	}
	return _asrdresp(fd, tbuf, 2*TICKETLEN);
}