Home | History | Annotate | Download | only in libsa

Lines Matching defs:auth

71 	int32_t 	authtype;	/* auth type */
72 u_int32_t authlen; /* auth length */
120 struct auth_info *auth;
147 /* Auth verifier is always auth_null */
148 send_head -= sizeof(*auth);
149 auth = (struct auth_info *)send_head;
150 auth->authtype = htonl(RPCAUTH_NULL);
151 auth->authlen = 0;
154 /* Auth credentials: always auth unix (as root) */
157 send_head -= sizeof(*auth);
158 auth = (struct auth_info *)send_head;
159 auth->authtype = htonl(RPCAUTH_UNIX);
160 auth->authlen = htonl(sizeof(struct auth_unix));
162 /* Auth credentials: always auth_null (XXX OK?) */
163 send_head -= sizeof(*auth);
164 auth = send_head;
165 auth->authtype = htonl(RPCAUTH_NULL);
166 auth->authlen = 0;
208 auth = &reply->rp_u.rpu_rok.rok_auth;
209 x = ntohl(auth->authlen);
213 printf("%s: reply auth != NULL\n", __func__);