/usr/include/opal/zrtp/opalzrtp.h is in libopal-dev 3.10.2~dfsg-0ubuntu1.
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 37 38 39 40 41 42 | #ifndef OPAL_ZRTP_OPALZRTP_H
#define OPAL_ZRTP_OPALZRTP_H
#ifdef P_USE_PRAGMA
#pragma interface
#endif
#include <zrtp.h>
#include <opal/buildopts.h>
#include <zrtp/zrtpeventproc.h>
namespace PWLibStupidLinkerHacks {
extern int libZRTPLoader;
};
class OpalZrtp {
public:
static bool Init(char *name, char *zidFile);
static bool Init(OpalZrtp *opalZrtp);
static bool DeInit();
static zrtp_global_ctx *GetZrtpContext();
static unsigned char *GetZID();
static void SetEventProcessor(ZrtpEventProcessor *eventProcessor);
static ZrtpEventProcessor * GetEventProcessor();
virtual ~OpalZrtp();
protected:
virtual unsigned char *DoGetZID();
virtual zrtp_global_ctx *DoGetZrtpContext();
virtual bool DoInit(char *name, char *zidFile);
private:
static OpalZrtp *instance;
static int isDefault;
static ZrtpEventProcessor *eventProcessor;
};
#endif // OPAL_ZRTP_OPALZRTP_H
|