diff options
author | neilbrown <neilbrown> | 2006-03-28 00:48:27 +0000 |
---|---|---|
committer | neilbrown <neilbrown> | 2006-03-28 00:48:27 +0000 |
commit | 2ca793c93c09d0bc180b8eed9819206fd42aff21 (patch) | |
tree | f2178bfa004750e9b56d8330949a1be7f36bd657 /utils/gssd/context.h | |
parent | 4ce79c4ef9d40b9df12e1f55c2fbb7a75744052c (diff) | |
download | nfs-utils-2ca793c93c09d0bc180b8eed9819206fd42aff21.tar.gz nfs-utils-2ca793c93c09d0bc180b8eed9819206fd42aff21.tar.xz nfs-utils-2ca793c93c09d0bc180b8eed9819206fd42aff21.zip |
Update krb5 code to use glue routine lucid context functions
The gssd code should not know about the glue layer's context structure.
A previous patch added gss_export_lucid_sec_context() and
gss_free_lucid_sec_context() functions to the gssapi glue layer.
Use these functions rather than calling directly to the Kerberos
gssapi code (which requires the Kerberos context handle rather
than the glue's context handle).
(really this time)
Diffstat (limited to 'utils/gssd/context.h')
-rw-r--r-- | utils/gssd/context.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/gssd/context.h b/utils/gssd/context.h index b296539..2c9396a 100644 --- a/utils/gssd/context.h +++ b/utils/gssd/context.h @@ -33,7 +33,8 @@ #include <rpc/rpc.h> -int serialize_context_for_kernel(gss_ctx_id_t ctx, gss_buffer_desc *buf); +int serialize_context_for_kernel(gss_ctx_id_t ctx, gss_buffer_desc *buf, + gss_OID mech); int serialize_spkm3_ctx(gss_ctx_id_t ctx, gss_buffer_desc *buf); int serialize_krb5_ctx(gss_ctx_id_t ctx, gss_buffer_desc *buf); |