request_context.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /** **************************************************************************
  2. * request_context.h
  3. *
  4. * Copyright 2008 Bryan Ischo <[email protected]>
  5. *
  6. * This file is part of libs3.
  7. *
  8. * libs3 is free software: you can redistribute it and/or modify it under the
  9. * terms of the GNU Lesser General Public License as published by the Free
  10. * Software Foundation, version 3 or above of the License. You can also
  11. * redistribute and/or modify it under the terms of the GNU General Public
  12. * License, version 2 or above of the License.
  13. *
  14. * In addition, as a special exception, the copyright holders give
  15. * permission to link the code of this library and its programs with the
  16. * OpenSSL library, and distribute linked combinations including the two.
  17. *
  18. * libs3 is distributed in the hope that it will be useful, but WITHOUT ANY
  19. * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  20. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  21. * details.
  22. *
  23. * You should have received a copy of the GNU Lesser General Public License
  24. * version 3 along with libs3, in a file named COPYING. If not, see
  25. * <https://www.gnu.org/licenses/>.
  26. *
  27. * You should also have received a copy of the GNU General Public License
  28. * version 2 along with libs3, in a file named COPYING-GPLv2. If not, see
  29. * <https://www.gnu.org/licenses/>.
  30. *
  31. ************************************************************************** **/
  32. #ifndef REQUEST_CONTEXT_H
  33. #define REQUEST_CONTEXT_H
  34. #include "libs3.h"
  35. struct S3RequestContext
  36. {
  37. #ifdef WINSCP
  38. S3SessionCallback *sessionCallback;
  39. void *sessionCallbackData;
  40. S3SslCallback *sslCallback;
  41. void *sslCallbackData;
  42. S3ResponseDataCallback *responseDataCallback;
  43. void *responseDataCallbackData;
  44. #else
  45. CURLM *curlm;
  46. int verifyPeerSet;
  47. long verifyPeer;
  48. struct Request *requests;
  49. #endif
  50. };
  51. #endif /* REQUEST_CONTEXT_H */