summaryrefslogtreecommitdiff
path: root/syncRtpCommand.h
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2008-03-14 13:38:51 +0000
committerChristian Pointner <equinox@anytun.org>2008-03-14 13:38:51 +0000
commit4d95b9eb68c438ad166d75b1cb9053c03bf2356e (patch)
treede59c9404be32ae4db5a9dd9a201492f5c86a065 /syncRtpCommand.h
parentanyrtpproxy can handled most commands (diff)
bugfixes @ anyrtpproxy
Diffstat (limited to 'syncRtpCommand.h')
-rw-r--r--syncRtpCommand.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/syncRtpCommand.h b/syncRtpCommand.h
index 7ac9859..cc1309e 100644
--- a/syncRtpCommand.h
+++ b/syncRtpCommand.h
@@ -22,7 +22,8 @@ private:
{
Lock lock(gRtpSessionTable.getMutex());
ar & callid_;
- ar & gRtpSessionTable.getOrNewSessionUnlocked(callid_);
+ bool is_new;
+ ar & gRtpSessionTable.getOrNewSessionUnlocked(callid_, is_new);
};
};