Lines Matching defs:rpc_authops
124 struct rpc_authops { struct
125 struct module *owner;
126 rpc_authflavor_t au_flavor; /* flavor (RPC_AUTH_*) */
127 char * au_name;
128 struct rpc_auth * (*create)(struct rpc_auth_create_args *, struct rpc_clnt *);
129 void (*destroy)(struct rpc_auth *);
131 int (*hash_cred)(struct auth_cred *, unsigned int);
132 struct rpc_cred * (*lookup_cred)(struct rpc_auth *, struct auth_cred *, int);
133 struct rpc_cred * (*crcreate)(struct rpc_auth*, struct auth_cred *, int, gfp_t);
134 int (*list_pseudoflavors)(rpc_authflavor_t *, int);
135 rpc_authflavor_t (*info2flavor)(struct rpcsec_gss_info *);
136 int (*flavor2info)(rpc_authflavor_t,
161 extern const struct rpc_authops authunix_ops; argument