ref: 7b58000c3d019d157fa5f1cc5621b0923e5b8539
dir: /libauthsrv/_asrequest.c/
#include <u.h> #include <libc.h> #include <authsrv.h> int _asrequest(int fd, Ticketreq *tr) { char trbuf[TICKREQLEN]; int n; n = convTR2M(tr, trbuf, sizeof(trbuf)); if(write(fd, trbuf, n) != n) return -1; return 0; }