This file is indexed.

/usr/include/resip/stack/StartLine.hxx is in libresiprocate-1.11-dev 1:1.11.0~beta5-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
24
25
26
27
28
29
30
31
#ifndef StartLine_Include_Guard
#define StartLine_Include_Guard

#include "resip/stack/LazyParser.hxx"

namespace resip
{
class StartLine : public LazyParser
{
   public:
      StartLine() {}
      explicit StartLine(const HeaderFieldValue& headerFieldValue) :
         LazyParser(headerFieldValue)
      {}
      StartLine(const char* buf, int length) :
         LazyParser(buf, length)
      {}
      virtual ~StartLine(){}

      virtual EncodeStream& encodeParsed(EncodeStream& str) const=0;
      virtual void parse(ParseBuffer& pb)=0;
      virtual const Data& errorContext() const=0;
      virtual StartLine* clone() const=0;
      virtual StartLine* clone(void* location) const=0;


}; // class StartLine

} // namespace resip

#endif // include guard