gtls.h 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. #ifndef HEADER_CURL_GTLS_H
  2. #define HEADER_CURL_GTLS_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) 1998 - 2014, 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. #ifdef USE_GNUTLS
  26. #include "urldata.h"
  27. int Curl_gtls_init(void);
  28. int Curl_gtls_cleanup(void);
  29. CURLcode Curl_gtls_connect(struct connectdata *conn, int sockindex);
  30. CURLcode Curl_gtls_connect_nonblocking(struct connectdata *conn,
  31. int sockindex,
  32. bool *done);
  33. /* tell GnuTLS to close down all open information regarding connections (and
  34. thus session ID caching etc) */
  35. void Curl_gtls_close_all(struct SessionHandle *data);
  36. /* close a SSL connection */
  37. void Curl_gtls_close(struct connectdata *conn, int sockindex);
  38. void Curl_gtls_session_free(void *ptr);
  39. size_t Curl_gtls_version(char *buffer, size_t size);
  40. int Curl_gtls_shutdown(struct connectdata *conn, int sockindex);
  41. int Curl_gtls_random(struct SessionHandle *data,
  42. unsigned char *entropy,
  43. size_t length);
  44. void Curl_gtls_md5sum(unsigned char *tmp, /* input */
  45. size_t tmplen,
  46. unsigned char *md5sum, /* output */
  47. size_t md5len);
  48. /* API setup for GnuTLS */
  49. #define curlssl_init Curl_gtls_init
  50. #define curlssl_cleanup Curl_gtls_cleanup
  51. #define curlssl_connect Curl_gtls_connect
  52. #define curlssl_connect_nonblocking Curl_gtls_connect_nonblocking
  53. #define curlssl_session_free(x) Curl_gtls_session_free(x)
  54. #define curlssl_close_all Curl_gtls_close_all
  55. #define curlssl_close Curl_gtls_close
  56. #define curlssl_shutdown(x,y) Curl_gtls_shutdown(x,y)
  57. #define curlssl_set_engine(x,y) (x=x, y=y, CURLE_NOT_BUILT_IN)
  58. #define curlssl_set_engine_default(x) (x=x, CURLE_NOT_BUILT_IN)
  59. #define curlssl_engines_list(x) (x=x, (struct curl_slist *)NULL)
  60. #define curlssl_version Curl_gtls_version
  61. #define curlssl_check_cxn(x) (x=x, -1)
  62. #define curlssl_data_pending(x,y) (x=x, y=y, 0)
  63. #define curlssl_random(x,y,z) Curl_gtls_random(x,y,z)
  64. #define curlssl_md5sum(a,b,c,d) Curl_gtls_md5sum(a,b,c,d)
  65. #define CURL_SSL_BACKEND CURLSSLBACKEND_GNUTLS
  66. #endif /* USE_GNUTLS */
  67. #endif /* HEADER_CURL_GTLS_H */