mirror of
https://github.com/curl/curl.git
synced 2026-04-14 21:31:42 +03:00
GSSAPI: remove useless *_MECHANISM defines.
This commit is contained in:
parent
5b22c47ca9
commit
c31dec7f98
4 changed files with 3 additions and 9 deletions
|
|
@ -39,14 +39,8 @@
|
|||
# include <gssapi.h>
|
||||
#endif
|
||||
|
||||
#ifndef SPNEGO_MECHANISM
|
||||
extern gss_OID_desc Curl_spnego_mech_oid;
|
||||
#define SPNEGO_MECHANISM &Curl_spnego_mech_oid
|
||||
#endif
|
||||
#ifndef KRB5_MECHANISM
|
||||
extern gss_OID_desc Curl_krb5_mech_oid;
|
||||
#define KRB5_MECHANISM &Curl_krb5_mech_oid
|
||||
#endif
|
||||
|
||||
/* Common method for using GSS-API */
|
||||
|
||||
|
|
|
|||
|
|
@ -147,7 +147,7 @@ int Curl_input_negotiate(struct connectdata *conn, bool proxy,
|
|||
&minor_status,
|
||||
&neg_ctx->context,
|
||||
neg_ctx->server_name,
|
||||
SPNEGO_MECHANISM,
|
||||
&Curl_spnego_mech_oid,
|
||||
GSS_C_NO_CHANNEL_BINDINGS,
|
||||
&input_token,
|
||||
&output_token,
|
||||
|
|
|
|||
|
|
@ -236,7 +236,7 @@ krb5_auth(void *app_data, struct connectdata *conn)
|
|||
&min,
|
||||
context,
|
||||
gssname,
|
||||
KRB5_MECHANISM,
|
||||
&Curl_krb5_mech_oid,
|
||||
&chan,
|
||||
gssresp,
|
||||
&output_buffer,
|
||||
|
|
|
|||
|
|
@ -181,7 +181,7 @@ CURLcode Curl_SOCKS5_gssapi_negotiate(int sockindex,
|
|||
&gss_minor_status,
|
||||
&gss_context,
|
||||
server,
|
||||
KRB5_MECHANISM,
|
||||
&Curl_krb5_mech_oid,
|
||||
NULL,
|
||||
gss_token,
|
||||
&gss_send_token,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue