This file is indexed.

/usr/include/sipxtapi/xmlparser/ExtractContent.h is in libsipxtapi-dev 3.3.0~test17-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
// Functions for extracting the text content of an XML element.

#include "xmlparser/tinyxml.h"
#include "utl/UtlString.h"

// Get the top-level text content of an XML element.
void textContentShallow(UtlString& string,
                        TiXmlElement *element);

// Get the complete text content of an XML element (including sub-elements).
void textContentDeep(UtlString& string,
                     TiXmlElement *element);

// Service function for textContentDeep.
void textContentDeepRecursive(UtlString& string,
                              TiXmlElement *element);