1
0

request_context.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. * <http://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. * <http://www.gnu.org/licenses/>.
  30. *
  31. ************************************************************************** **/
  32. #ifndef REQUEST_CONTEXT_H
  33. #define REQUEST_CONTEXT_H
  34. #include "libs3.h"
  35. typedef enum
  36. {
  37. S3CurlModeMultiPerform ,
  38. S3CurlModeMultiSocket ,
  39. } S3CurlMode;
  40. struct S3RequestContext
  41. {
  42. CURLM *curlm;
  43. S3CurlMode curl_mode;
  44. int verifyPeerSet;
  45. long verifyPeer;
  46. struct Request *requests;
  47. S3SetupCurlCallback setupCurlCallback;
  48. void *setupCurlCallbackData;
  49. };
  50. #endif /* REQUEST_CONTEXT_H */