/usr/include/resip/dum/DumFeatureMessage.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 | #if !defined(RESIP_DumFeatureMessage_hxx)
#define RESIP_DumFeatureMessage_hxx
#include <iosfwd>
#include "resip/stack/ApplicationMessage.hxx"
namespace resip
{
//!dcm! -- what is the intent of ApplicationMessage, especially as used in
//repro? Is this really what ApplicationMessage should be(always has tid)
class DumFeatureMessage : public ApplicationMessage
{
public:
DumFeatureMessage(const Data& tid);
DumFeatureMessage(const DumFeatureMessage&);
~DumFeatureMessage();
Message* clone() const;
virtual EncodeStream& encode(EncodeStream& strm) const;
/// output a brief description to stream
virtual EncodeStream& encodeBrief(EncodeStream& str) const;
virtual const Data& getTransactionId() const { return mTransactionId; }
private:
Data mTransactionId;
};
}
#endif
|