curl_gssapi.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #ifndef HEADER_CURL_GSSAPI_H
  2. #define HEADER_CURL_GSSAPI_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
  11. *
  12. * This software is licensed as described in the file COPYING, which
  13. * you should have received as part of this distribution. The terms
  14. * are also available at http://curl.haxx.se/docs/copyright.html.
  15. *
  16. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  17. * copies of the Software, and permit persons to whom the Software is
  18. * furnished to do so, under the terms of the COPYING file.
  19. *
  20. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  21. * KIND, either express or implied.
  22. *
  23. ***************************************************************************/
  24. #include "curl_setup.h"
  25. #include "urldata.h"
  26. #ifdef HAVE_GSSAPI
  27. #ifdef HAVE_GSSGNU
  28. # include <gss.h>
  29. #elif defined HAVE_GSSMIT
  30. /* MIT style */
  31. # include <gssapi/gssapi.h>
  32. # include <gssapi/gssapi_generic.h>
  33. # include <gssapi/gssapi_krb5.h>
  34. #else
  35. /* Heimdal-style */
  36. # include <gssapi.h>
  37. #endif
  38. /* Common method for using gss api */
  39. OM_uint32 Curl_gss_init_sec_context(
  40. struct SessionHandle *data,
  41. OM_uint32 * minor_status,
  42. gss_ctx_id_t * context,
  43. gss_name_t target_name,
  44. gss_channel_bindings_t input_chan_bindings,
  45. gss_buffer_t input_token,
  46. gss_buffer_t output_token,
  47. OM_uint32 * ret_flags);
  48. #endif /* HAVE_GSSAPI */
  49. #endif /* HEADER_CURL_GSSAPI_H */