X-Git-Url: https://git.syn-net.org/debian/?p=anytun.git;a=blobdiff_plain;f=src%2Fanyrtpproxy%2FsyncRtpCommand.h;h=31b333c728f653b5d732e378d2014ca464753446;hp=7b4c1861a4f23000239753cb21f6473e9dd2326d;hb=ef0cacf2508418915d3f64b04003be3c13fed3cc;hpb=ece844834d2cecc028ce81ca283f5d441088580e diff --git a/src/anyrtpproxy/syncRtpCommand.h b/src/anyrtpproxy/syncRtpCommand.h index 7b4c186..31b333c 100644 --- a/src/anyrtpproxy/syncRtpCommand.h +++ b/src/anyrtpproxy/syncRtpCommand.h @@ -11,7 +11,7 @@ * tunneling and relaying of packets of any protocol. * * - * Copyright (C) 2007-2009 Othmar Gsenger, Erwin Nindl, + * Copyright (C) 2007-2009 Othmar Gsenger, Erwin Nindl, * Christian Pointner * * This file is part of Anytun. @@ -40,22 +40,21 @@ class SyncRtpCommand { public: - SyncRtpCommand(const std::string & ); - SyncRtpCommand(); - std::string getCallId() const; + SyncRtpCommand(const std::string&); + SyncRtpCommand(); + std::string getCallId() const; private: - SyncRtpCommand(const SyncRtpCommand &); - std::string callid_; + 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_; + void serialize(Archive& ar, const unsigned int version) { + Lock lock(gRtpSessionTable.getMutex()); + ar& callid_; bool is_new; - ar & gRtpSessionTable.getOrNewSessionUnlocked(callid_, is_new); - }; + ar& gRtpSessionTable.getOrNewSessionUnlocked(callid_, is_new); + }; };