This file is indexed.

/usr/include/repro/stateAgents/CertServer.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
#if !defined(Repro_CertServer_hxx)
#define Repro_CertServer_hxx

#include "repro/stateAgents/CertPublicationHandler.hxx"
#include "repro/stateAgents/CertSubscriptionHandler.hxx"
#include "repro/stateAgents/PrivateKeyPublicationHandler.hxx"
#include "repro/stateAgents/PrivateKeySubscriptionHandler.hxx"

namespace resip
{
class DialogUsageManager;
}

namespace repro
{

class CertServer
{
   public:
      CertServer(resip::DialogUsageManager& dum);
      ~CertServer();

   private:
      resip::DialogUsageManager& mDum;
      
      PrivateKeySubscriptionHandler mPrivateKeyServer;
      PrivateKeyPublicationHandler mPrivateKeyUpdater;
      CertSubscriptionHandler mCertServer;
      CertPublicationHandler mCertUpdater;
};

}
#endif