/usr/include/resip/dum/DumCommand.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 32 33 34 | #if !defined(RESIP_DUMCOMMAND_HXX)
#define RESIP_DUMCOMMAND_HXX
#include "resip/stack/ApplicationMessage.hxx"
namespace resip
{
class DumCommand : public ApplicationMessage
{
public:
virtual ~DumCommand() {}
virtual void executeCommand() = 0;
};
class DumCommandAdapter : public DumCommand
{
public:
virtual ~DumCommandAdapter() {}
virtual Message* clone() const
{
resip_assert(false);
return NULL;
}
virtual EncodeStream& encode(EncodeStream& strm) const
{
return encodeBrief(strm);
}
};
}
#endif
|