This file is indexed.

/usr/include/exiv2/http.hpp is in libexiv2-dev 0.25-2.1.

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
#ifndef HTTP_HPP_
#define HTTP_HPP_

#include <string>
#include <map>
#include <algorithm>

namespace Exiv2 {
    typedef std::map<std::string,std::string> dict_t;
    typedef dict_t::iterator                  dict_i;

    EXIV2API int http(dict_t& request,dict_t& response,std::string& errors);

}

#ifndef EXV_USE_CURL
#define EXV_USE_CURL 0
#endif
#if EXV_USE_CURL == 1
#include <curl/curl.h>
#endif

#endif