ref: 6c0e2e74e353f73e72391e76b5d875d0c3637e7c
dir: /sys/src/libauthsrv/_asgetticket.c/
#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);
}