mirror of
https://github.com/0intro/conterm
synced 2024-11-22 13:51:34 +03:00
14 lines
217 B
C
14 lines
217 B
C
|
#include <u.h>
|
||
|
#include <libc.h>
|
||
|
#include <auth.h>
|
||
|
#include <authsrv.h>
|
||
|
#include "authlocal.h"
|
||
|
|
||
|
Attr*
|
||
|
auth_attr(AuthRpc *rpc)
|
||
|
{
|
||
|
if(auth_rpc(rpc, "attr", nil, 0) != ARok)
|
||
|
return nil;
|
||
|
return _parseattr(rpc->arg);
|
||
|
}
|