Lines Matching defs:rpc_authops
115 struct rpc_authops { struct
116 struct module *owner;
117 rpc_authflavor_t au_flavor; /* flavor (RPC_AUTH_*) */
118 char * au_name;
119 struct rpc_auth * (*create)(struct rpc_auth_create_args *, struct rpc_clnt *);
120 void (*destroy)(struct rpc_auth *);
122 struct rpc_cred * (*lookup_cred)(struct rpc_auth *, struct auth_cred *, int);
123 struct rpc_cred * (*crcreate)(struct rpc_auth*, struct auth_cred *, int);
124 int (*list_pseudoflavors)(rpc_authflavor_t *, int);
125 rpc_authflavor_t (*info2flavor)(struct rpcsec_gss_info *);
126 int (*flavor2info)(rpc_authflavor_t,
151 extern const struct rpc_authops authunix_ops; argument