moved rtp stuff to anyrtpproxy and removed it from anytun
[anytun.git] / src / anyrtpproxy / rtpSession.cpp
bloba3551e3966d7aac10e6db3bfeefeed55b9691eb2
1 /*
2 * anytun
4 * The secure anycast tunneling protocol (satp) defines a protocol used
5 * for communication between any combination of unicast and anycast
6 * tunnel endpoints. It has less protocol overhead than IPSec in Tunnel
7 * mode and allows tunneling of every ETHER TYPE protocol (e.g.
8 * ethernet, ip, arp ...). satp directly includes cryptography and
9 * message authentication based on the methodes used by SRTP. It is
10 * intended to deliver a generic, scaleable and secure solution for
11 * tunneling and relaying of packets of any protocol.
14 * Copyright (C) 2007-2008 Othmar Gsenger, Erwin Nindl,
15 * Christian Pointner <satp@wirdorange.org>
17 * This file is part of Anytun.
19 * Anytun is free software: you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License version 3 as
21 * published by the Free Software Foundation.
23 * Anytun is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
28 * You should have received a copy of the GNU General Public License
29 * along with anytun. If not, see <http://www.gnu.org/licenses/>.
32 #include "rtpSession.h"
34 #include "callIdQueue.h"
36 RtpSession::RtpSession(const std::string& call_id) : in_sync_(false), call_id_(call_id) , dead_(false), complete_(false),
37 seen1_(false), seen2_(false)
41 void RtpSession::reinit()
43 gCallIdQueue.push(call_id_);
46 bool RtpSession::isDead()
48 Lock lock(mutex_);
49 return (dead_ && in_sync_);
52 bool RtpSession::isDead(bool d)
54 Lock Lock(mutex_);
55 return dead_ = d;
58 bool RtpSession::isComplete()
60 Lock lock(mutex_);
61 return complete_;
64 bool RtpSession::isComplete(bool c)
66 Lock lock(mutex_);
67 return complete_ = c;
70 bool RtpSession::getSeen1()
72 Lock lock(mutex_);
73 return seen1_;
76 RtpSession& RtpSession::setSeen1()
78 Lock lock(mutex_);
79 //in_sync_ = false;
80 seen1_ = true;
81 return *this;
84 bool RtpSession::getSeen2()
86 Lock lock(mutex_);
87 return seen2_;
90 RtpSession& RtpSession::setSeen2()
92 Lock lock(mutex_);
93 //in_sync_ = false;
94 seen2_ = true;
95 return *this;
98 RtpSession::proto::endpoint RtpSession::getLocalEnd1()
100 Lock lock(mutex_);
101 return local_end1_;
104 RtpSession& RtpSession::setLocalEnd1(RtpSession::proto::endpoint e)
106 Lock lock(mutex_);
107 in_sync_ = false;
108 local_end1_ = e;
109 return *this;
112 RtpSession::proto::endpoint RtpSession::getLocalEnd2()
114 Lock lock(mutex_);
115 return local_end2_;
118 RtpSession& RtpSession::setLocalEnd2(RtpSession::proto::endpoint e)
120 Lock lock(mutex_);
121 in_sync_ = false;
122 local_end2_ = e;
123 return *this;
126 RtpSession::proto::endpoint RtpSession::getRemoteEnd1()
128 Lock lock(mutex_);
129 return remote_end1_;
132 RtpSession& RtpSession::setRemoteEnd1(RtpSession::proto::endpoint e)
134 Lock lock(mutex_);
135 in_sync_ = false;
136 remote_end1_ = e;
137 return *this;
140 RtpSession::proto::endpoint RtpSession::getRemoteEnd2()
142 Lock lock(mutex_);
143 return remote_end2_;
146 RtpSession& RtpSession::setRemoteEnd2(RtpSession::proto::endpoint e)
148 Lock lock(mutex_);
149 in_sync_ = false;
150 remote_end2_ = e;
151 return *this;