gtls.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #ifndef __GTLS_H
  2. #define __GTLS_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) 1998 - 2007, Daniel Stenberg, <[email protected]>, 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. * $Id$
  24. ***************************************************************************/
  25. int Curl_gtls_init(void);
  26. int Curl_gtls_cleanup(void);
  27. CURLcode Curl_gtls_connect(struct connectdata *conn, int sockindex);
  28. /* tell GnuTLS to close down all open information regarding connections (and
  29. thus session ID caching etc) */
  30. void Curl_gtls_close_all(struct SessionHandle *data);
  31. void Curl_gtls_close(struct connectdata *conn); /* close a SSL connection */
  32. /* return number of sent (non-SSL) bytes */
  33. ssize_t Curl_gtls_send(struct connectdata *conn, int sockindex,
  34. void *mem, size_t len);
  35. ssize_t Curl_gtls_recv(struct connectdata *conn, /* connection data */
  36. int num, /* socketindex */
  37. char *buf, /* store read data here */
  38. size_t buffersize, /* max amount to read */
  39. bool *wouldblock);
  40. void Curl_gtls_session_free(void *ptr);
  41. size_t Curl_gtls_version(char *buffer, size_t size);
  42. int Curl_gtls_shutdown(struct connectdata *conn, int sockindex);
  43. #endif