Lines Matching defs:rpc_authops
111 struct rpc_authops { struct
112 struct module *owner;
113 rpc_authflavor_t au_flavor; /* flavor (RPC_AUTH_*) */
114 char * au_name;
115 struct rpc_auth * (*create)(struct rpc_auth_create_args *, struct rpc_clnt *);
116 void (*destroy)(struct rpc_auth *);
118 struct rpc_cred * (*lookup_cred)(struct rpc_auth *, struct auth_cred *, int);
119 struct rpc_cred * (*crcreate)(struct rpc_auth*, struct auth_cred *, int);
120 int (*list_pseudoflavors)(rpc_authflavor_t *, int);
121 rpc_authflavor_t (*info2flavor)(struct rpcsec_gss_info *);
122 int (*flavor2info)(rpc_authflavor_t,
147 extern const struct rpc_authops authunix_ops; argument