This file is indexed.

/usr/include/xmlrpc-c/xml.hpp is in libxmlrpc-c++4-dev 1.16.33-3.1ubuntu5.2.

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

#include <string>
#include <xmlrpc-c/base.hpp>

namespace xmlrpc_c {
namespace xml {

void
generateCall(std::string         const& methodName,
             xmlrpc_c::paramList const& paramList,
             std::string *       const  callXmlP);
    
void
generateCall(std::string         const& methodName,
             xmlrpc_c::paramList const& paramList,
             xmlrpc_dialect      const  dialect,
             std::string *       const  callXmlP);
    
void
parseSuccessfulResponse(std::string       const& responseXml,
                        xmlrpc_c::value * const  resultP);

void
parseResponse(std::string            const& responseXml,
              xmlrpc_c::rpcOutcome * const  outcomeP);


void
trace(std::string const& label,
      std::string const& xml);


}} // namespace
#endif