diff options
| author | J. Bruce Fields <bfields@fieldses.org> | 2005-10-13 16:55:18 -0400 | 
|---|---|---|
| committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2005-10-18 23:19:47 -0700 | 
| commit | 00fd6e14255fe7a249315746386d640bc4e9e758 (patch) | |
| tree | 36d8fad57404c5ea96cdb6e5579f4241e2cd8188 /include/linux/sunrpc/gss_api.h | |
| parent | 14ae162c24d985593d5b19437d7f3d8fd0062b59 (diff) | |
| download | olio-linux-3.10-00fd6e14255fe7a249315746386d640bc4e9e758.tar.xz olio-linux-3.10-00fd6e14255fe7a249315746386d640bc4e9e758.zip  | |
RPCSEC_GSS remove all qop parameters
 Not only are the qop parameters that are passed around throughout the gssapi
 unused by any currently implemented mechanism, but there appears to be some
 doubt as to whether they will ever be used.  Let's just kill them off for now.
 Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
 Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'include/linux/sunrpc/gss_api.h')
| -rw-r--r-- | include/linux/sunrpc/gss_api.h | 13 | 
1 files changed, 2 insertions, 11 deletions
diff --git a/include/linux/sunrpc/gss_api.h b/include/linux/sunrpc/gss_api.h index e896752ffbf..9b8bcf125c1 100644 --- a/include/linux/sunrpc/gss_api.h +++ b/include/linux/sunrpc/gss_api.h @@ -40,23 +40,19 @@ int gss_import_sec_context(  		struct gss_ctx		**ctx_id);  u32 gss_get_mic(  		struct gss_ctx		*ctx_id, -		u32			qop,  		struct xdr_buf		*message,  		struct xdr_netobj	*mic_token);  u32 gss_verify_mic(  		struct gss_ctx		*ctx_id,  		struct xdr_buf		*message, -		struct xdr_netobj	*mic_token, -		u32			*qstate); +		struct xdr_netobj	*mic_token);  u32 gss_wrap(  		struct gss_ctx		*ctx_id, -		u32			qop,  		int			offset,  		struct xdr_buf		*outbuf,  		struct page		**inpages);  u32 gss_unwrap(  		struct gss_ctx		*ctx_id, -		u32			*qop,  		int			offset,  		struct xdr_buf		*inbuf);  u32 gss_delete_sec_context( @@ -67,7 +63,6 @@ char *gss_service_to_auth_domain_name(struct gss_api_mech *, u32 service);  struct pf_desc {  	u32	pseudoflavor; -	u32	qop;  	u32	service;  	char	*name;  	char	*auth_domain_name; @@ -96,23 +91,19 @@ struct gss_api_ops {  			struct gss_ctx		*ctx_id);  	u32 (*gss_get_mic)(  			struct gss_ctx		*ctx_id, -			u32			qop,   			struct xdr_buf		*message,  			struct xdr_netobj	*mic_token);  	u32 (*gss_verify_mic)(  			struct gss_ctx		*ctx_id,  			struct xdr_buf		*message, -			struct xdr_netobj	*mic_token, -			u32			*qstate); +			struct xdr_netobj	*mic_token);  	u32 (*gss_wrap)(  			struct gss_ctx		*ctx_id, -			u32			qop,  			int			offset,  			struct xdr_buf		*outbuf,  			struct page		**inpages);  	u32 (*gss_unwrap)(  			struct gss_ctx		*ctx_id, -			u32			*qop,  			int			offset,  			struct xdr_buf		*buf);  	void (*gss_delete_sec_context)(  |