diff options
author | Simo Sorce <simo@redhat.com> | 2012-05-31 19:20:45 -0400 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2012-08-28 17:17:39 +0200 |
commit | 5bae0fe0a835f8dcf52c4a95628233dba3143152 (patch) | |
tree | ce6de71214e0b03518d3a48eb89f7a3be0b16a69 /proxy/src/mechglue/gss_plugin.h | |
parent | 57f72d980610a66ad3e1ab656d012a89febfe9a3 (diff) | |
download | gss-proxy-5bae0fe0a835f8dcf52c4a95628233dba3143152.tar.gz gss-proxy-5bae0fe0a835f8dcf52c4a95628233dba3143152.tar.xz gss-proxy-5bae0fe0a835f8dcf52c4a95628233dba3143152.zip |
Implement indicate mechs related mechglue wrappers
Diffstat (limited to 'proxy/src/mechglue/gss_plugin.h')
-rw-r--r-- | proxy/src/mechglue/gss_plugin.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/proxy/src/mechglue/gss_plugin.h b/proxy/src/mechglue/gss_plugin.h index 18b04a8..99cae6b 100644 --- a/proxy/src/mechglue/gss_plugin.h +++ b/proxy/src/mechglue/gss_plugin.h @@ -256,4 +256,25 @@ OM_uint32 gssi_delete_name_attribute(OM_uint32 *minor_status, gss_name_t input_name, gss_buffer_t attr); +OM_uint32 gssi_indicate_mechs(OM_uint32 *minor_status, gss_OID_set *mech_set); + +OM_uint32 gssi_inquire_names_for_mech(OM_uint32 *minor_status, + gss_OID mech_type, + gss_OID_set *mech_names); + +OM_uint32 gssi_inquire_attrs_for_mech(OM_uint32 *minor_status, + gss_OID mech, + gss_OID_set *mech_attrs, + gss_OID_set *known_mech_attrs); + +OM_uint32 gssi_inquire_saslname_for_mech(OM_uint32 *minor_status, + const gss_OID desired_mech, + gss_buffer_t sasl_mech_name, + gss_buffer_t mech_name, + gss_buffer_t mech_description); + +OM_uint32 gssi_inquire_mech_for_saslname(OM_uint32 *minor_status, + const gss_buffer_t sasl_mech_name, + gss_OID *mech_type); + #endif /* _GGS_PLUGIN_H_ */ |