This file is indexed.

/usr/include/curlpp/internal/CurlHandle.hpp is in libcurlpp-dev 0.7.3-6.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/*
*    Copyright (c) <2002-2009> <Jean-Philippe Barrette-LaPierre>
*    
*    Permission is hereby granted, free of charge, to any person obtaining
*    a copy of this software and associated documentation files 
*    (curlpp), to deal in the Software without restriction, 
*    including without limitation the rights to use, copy, modify, merge,
*    publish, distribute, sublicense, and/or sell copies of the Software,
*    and to permit persons to whom the Software is furnished to do so, 
*    subject to the following conditions:
*    
*    The above copyright notice and this permission notice shall be included
*    in all copies or substantial portions of the Software.
*    
*    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
*    OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
*    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
*    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 
*    CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 
*    TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
*    SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

#ifndef CURLPP_CURL_HANDLE_HPP
#define CURLPP_CURL_HANDLE_HPP


#include "buildconfig.h"

#include "../Exception.hpp"
#include "../Types.hpp"

#include <curl/curl.h>

#include <memory>


namespace curlpp
{


namespace internal
{


	/**
	* Wrapper for CURL * handle.
	*/

	class CURLPPAPI CurlHandle
	{

	public:

		CurlHandle();
		CurlHandle(CURL * handle);

		std::auto_ptr<CurlHandle> clone() const;

		/**
		* Calls curl_easy_perform on the handle and throws exceptions on errors.
		*/
		void perform();

		/**
		* Simply calls curl_easy_reset on the handle.
		*/
		void reset();

		virtual ~CurlHandle();

		/**
		* Calls curl_easy_setopt on the option.
		*/
		template<typename OptionType>
		void option(CURLoption option, OptionType value);

		/**
		* Calls curl_easy_setopt on the option.
		*/
		template<typename OptionType, CURLoption optionType>
		void option(OptionType value);

		/**
		* This function will return the CURL * handle.
		*
		* DO NOT use this, unless you REALLY know what you
		* are doing.
		*/
		CURL * getHandle() const;

		/**
		* Request internal information from the curl session with this function.
		*
		* The third argument MUST be a pointer to a long, a pointer to a char *, 
		* a pointer to a struct curl_slist * or a pointer to a double.
		*/
		template<typename T>
		void getInfo(CURLINFO info, T & value);


		template<typename FunctorType>
		typename FunctorType::ResultType execute(FunctorType functor, typename FunctorType::ParamList params);


		size_t executeWriteFunctor(char * buffer, size_t size, size_t nitems);

		void setWriteFunctor(curlpp::types::WriteFunctionFunctor functor)
		{
			mWriteFunctor = functor;
		}


		size_t executeHeaderFunctor(char * buffer, size_t size, size_t nitems);

		void setHeaderFunctor(curlpp::types::WriteFunctionFunctor functor)
		{
			mHeaderFunctor = functor;
		}


		size_t executeReadFunctor(char * buffer, size_t size, size_t nitems);

		void setReadFunctor(curlpp::types::ReadFunctionFunctor functor)
		{
			mReadFunctor = functor;
		}


		int executeProgressFunctor(double dltotal, 
																double dlnow, 
																double ultotal, 
																double ulnow);

		void setProgressFunctor(curlpp::types::ProgressFunctionFunctor functor)
		{
			mProgressFunctor = functor;
		}


		int executeDebugFunctor(curl_infotype, char *, size_t);

		void setDebugFunctor(curlpp::types::DebugFunctionFunctor functor)
		{
			mDebugFunctor = functor;
		}


		CURLcode executeSslCtxFunctor(void * ssl_ctx);

		void setSslCtxFunctor(curlpp::types::SslCtxFunctionFunctor functor)
		{
			mSslFunctor = functor;
		}

		void setException(curlpp::CallbackExceptionBase * e);
		void throwException();

	private:

		CurlHandle(const CurlHandle & other);
		CurlHandle & operator=(const CurlHandle & other);

		/**
		* Provides libcURL a space to store error messages.
		*
		* Pass a char * to a buffer that the libcURL may store
		* human readable error messages in. This may  be  more
		* helpful  than just the return code from the library.
		* The buffer must be at least CURL_ERROR_SIZE big.
		* Note: if the library does not return an  error,  the
		* buffer may not have been touched. Do not rely on the
		* contents in those cases.
		*/
		void errorBuffer(char* buffer);

	private:

		CURL * mCurl;

		char mErrorBuffer[CURL_ERROR_SIZE + 1];

		curlpp::types::WriteFunctionFunctor mWriteFunctor;
		curlpp::types::WriteFunctionFunctor mHeaderFunctor;
		curlpp::types::ReadFunctionFunctor mReadFunctor;
		curlpp::types::ProgressFunctionFunctor mProgressFunctor;
		curlpp::types::DebugFunctionFunctor mDebugFunctor;
		curlpp::types::SslCtxFunctionFunctor mSslFunctor;
		curlpp::CallbackExceptionBase * mException;

	};


} // namespace internal


} // namespace curlpp

namespace cURLpp = curlpp;


#ifdef CURLPP_INCLUDE_TEMPLATE_DEFINITIONS
	#include "CurlHandle.inl"
#endif


#endif // #ifndef CURLPP_CURL_HANDLE_HPP