ref: 84f6061a92d92f6f0136f7d6ab42fa03c38d5a78
dir: /sys/src/cmd/unix/drawterm/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){
close(fd);
werrstr(pbmsg);
return -1;
}
return _asrdresp(fd, tbuf, 2*TICKETLEN);
}