-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
146 additions
and
308 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
#include "wrapper.h" | ||
|
||
OM_uint32 gss_error(OM_uint32 x) { return GSS_ERROR(x); } | ||
|
||
gss_OID gss_c_nt_hostbased_service() { return GSS_C_NT_HOSTBASED_SERVICE; } | ||
|
||
gss_OID gss_c_nt_user_name() { return GSS_C_NT_USER_NAME; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,19 @@ | ||
#include <krb5.h> | ||
#include <gssapi.h> | ||
#include <gssapi/gssapi_krb5.h> | ||
#include <krb5.h> | ||
|
||
#undef GSS_C_NO_CREDENTIAL | ||
const gss_cred_id_t GSS_C_NO_CREDENTIAL = ((gss_cred_id_t) 0); | ||
const gss_cred_id_t GSS_C_NO_CREDENTIAL = ((gss_cred_id_t)0); | ||
|
||
#undef GSS_C_NO_CHANNEL_BINDINGS | ||
const gss_channel_bindings_t GSS_C_NO_CHANNEL_BINDINGS = ((gss_channel_bindings_t) 0); | ||
const gss_channel_bindings_t GSS_C_NO_CHANNEL_BINDINGS = | ||
((gss_channel_bindings_t)0); | ||
|
||
#undef GSS_C_NO_CONTEXT | ||
const gss_ctx_id_t GSS_C_NO_CONTEXT = ((gss_ctx_id_t) 0); | ||
const gss_ctx_id_t GSS_C_NO_CONTEXT = ((gss_ctx_id_t)0); | ||
|
||
OM_uint32 gss_error(OM_uint32 x) { | ||
return GSS_ERROR(x); | ||
} | ||
OM_uint32 gss_error(OM_uint32 x); | ||
|
||
gss_OID gss_c_nt_hostbased_service() { | ||
return GSS_C_NT_HOSTBASED_SERVICE; | ||
} | ||
gss_OID gss_c_nt_hostbased_service(); | ||
|
||
gss_OID gss_c_nt_user_name() { | ||
return GSS_C_NT_USER_NAME; | ||
} | ||
gss_OID gss_c_nt_user_name(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters