Lines Matching full:auth
416 bool_t xdr_recv_auth (xdr_s_type *xdr, opaque_auth *auth)
418 switch(sizeof(auth->oa_flavor)) {
420 if(!XDR_RECV_INT8(xdr, (int8_t *)&(auth->oa_flavor))) return FALSE;
423 if(!XDR_RECV_INT16(xdr, (int16_t *)&(auth->oa_flavor))) return FALSE;
426 if(!XDR_RECV_INT32(xdr, (int32_t *)&(auth->oa_flavor))) return FALSE;
429 if (!XDR_RECV_UINT (xdr, (unsigned *)&(auth->oa_length))) {
433 if (auth->oa_length != 0) {
434 /* We throw away the auth stuff--it's always the default. */
435 auth->oa_base = NULL;
436 if (!XDR_RECV_BYTES (xdr, NULL, auth->oa_length))