ref: 12d6eb0ce3d6701a7a5e44083e18a3cb32a64539
dir: /sys/src/libauthsrv/_asgetresp.c/
#include <u.h>
#include <libc.h>
#include <authsrv.h>
int
_asgetresp(int fd, Ticket *t, Authenticator *a, Authkey *k)
{
char tbuf[TICKETLEN+AUTHENTLEN];
int n, m;
memset(t, 0, sizeof(Ticket));
if(a != nil)
memset(a, 0, sizeof(Authenticator));
n = _asrdresp(fd, tbuf, sizeof(tbuf));
if(n <= 0)
return -1;
m = convM2T(tbuf, n, t, k);
if(m <= 0)
return -1;
if(a != nil){
if(convM2A(tbuf+m, n-m, a, t) <= 0)
return -1;
}
return 0;
}