From fffd213c8cba2135afda493d797c41c10354770e Mon Sep 17 00:00:00 2001 From: Othmar Gsenger Date: Sat, 12 Apr 2008 11:38:42 +0000 Subject: big svn cleanup --- src/syncRtpCommand.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/syncRtpCommand.h (limited to 'src/syncRtpCommand.h') diff --git a/src/syncRtpCommand.h b/src/syncRtpCommand.h new file mode 100644 index 0000000..cc1309e --- /dev/null +++ b/src/syncRtpCommand.h @@ -0,0 +1,31 @@ +#ifndef _SYNCRTPCOMMAND_H +#define _SYNCRTPCOMMAND_H +#include +#include + +#include "threadUtils.hpp" +#include "rtpSessionTable.h" + +class SyncRtpCommand +{ +public: + SyncRtpCommand(const std::string & ); + SyncRtpCommand(); + std::string getCallId() const; + +private: + SyncRtpCommand(const SyncRtpCommand &); + std::string callid_; + friend class boost::serialization::access; + template + void serialize(Archive & ar, const unsigned int version) + { + Lock lock(gRtpSessionTable.getMutex()); + ar & callid_; + bool is_new; + ar & gRtpSessionTable.getOrNewSessionUnlocked(callid_, is_new); + }; +}; + + +#endif // _SYNCCOMMAND_H -- cgit v1.2.3