1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

GSSAPI: remove useless *_MECHANISM defines.

This commit is contained in:
Patrick Monnerat 2014-07-23 18:56:19 +02:00
parent 5b22c47ca9
commit c31dec7f98
4 changed files with 3 additions and 9 deletions

View File

@ -39,14 +39,8 @@
# include <gssapi.h> # include <gssapi.h>
#endif #endif
#ifndef SPNEGO_MECHANISM
extern gss_OID_desc Curl_spnego_mech_oid; 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; extern gss_OID_desc Curl_krb5_mech_oid;
#define KRB5_MECHANISM &Curl_krb5_mech_oid
#endif
/* Common method for using GSS-API */ /* Common method for using GSS-API */

View File

@ -147,7 +147,7 @@ int Curl_input_negotiate(struct connectdata *conn, bool proxy,
&minor_status, &minor_status,
&neg_ctx->context, &neg_ctx->context,
neg_ctx->server_name, neg_ctx->server_name,
SPNEGO_MECHANISM, &Curl_spnego_mech_oid,
GSS_C_NO_CHANNEL_BINDINGS, GSS_C_NO_CHANNEL_BINDINGS,
&input_token, &input_token,
&output_token, &output_token,

View File

@ -236,7 +236,7 @@ krb5_auth(void *app_data, struct connectdata *conn)
&min, &min,
context, context,
gssname, gssname,
KRB5_MECHANISM, &Curl_krb5_mech_oid,
&chan, &chan,
gssresp, gssresp,
&output_buffer, &output_buffer,

View File

@ -181,7 +181,7 @@ CURLcode Curl_SOCKS5_gssapi_negotiate(int sockindex,
&gss_minor_status, &gss_minor_status,
&gss_context, &gss_context,
server, server,
KRB5_MECHANISM, &Curl_krb5_mech_oid,
NULL, NULL,
gss_token, gss_token,
&gss_send_token, &gss_send_token,