This file is indexed.

/usr/include/repro/TimerCMessage.hxx is in libresiprocate-1.9-dev 1.9.6-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
32
33
34
35
36
#ifndef TIMER_C_MESSAGE_HXX
#define TIMER_C_MESSAGE_HXX 1

#include "resip/stack/ApplicationMessage.hxx"

#include "rutil/Data.hxx"
#include <time.h>
#include "rutil/resipfaststreams.hxx"

namespace repro
{

class TimerCMessage : public resip::ApplicationMessage
{
   public:
      TimerCMessage(resip::Data tid,int serial):
         mSerial(serial),
         mTid(tid)
      {}

      ~TimerCMessage(){}

      virtual const resip::Data& getTransactionId() const { return mTid; }
      virtual TimerCMessage* clone() const {return new TimerCMessage(mTid,mSerial);}
      virtual EncodeStream& encode(EncodeStream& ostr) const { ostr << "TimerCMessage(tid="<<mTid<<")"; return ostr; }
      virtual EncodeStream& encodeBrief(EncodeStream& ostr) const { return encode(ostr);}

      int mSerial;

   private:
      TimerCMessage(){}
      resip::Data mTid;

};
}
#endif