Fixed a number of unused member variables.

git-svn-id: http://voip.null.ro/svn/yate@5890 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2014-07-31 13:54:23 +00:00
parent 6ad019ac9c
commit aaaff3b79c
4 changed files with 3 additions and 6 deletions

View File

@ -56,7 +56,6 @@ protected:
String m_targetid; // The target for chan.notify
private:
bool m_terminated; // Stop processing data
UART* m_uart; // UART descendant class
};
// Data consumer for call setup info (bit collector)

View File

@ -92,7 +92,6 @@ public:
virtual void run();
private:
RudpSocket* m_rudp; // The rudp socket that holds this thread
bool m_stop;
};
class RudpSocket : public GenObject, public Mutex
@ -469,7 +468,7 @@ YSIGFACTORY2(SLT);
RudpThread::RudpThread(RudpSocket* rudp, Priority prio)
: Thread("RUDP Runner",prio),
m_rudp(rudp), m_stop(false)
m_rudp(rudp)
{
}
@ -912,7 +911,8 @@ bool RudpSocket::readData()
if (m_state == RudpDown && !haveSyn((u_int8_t)packet.at(0)))
return false;
if (m_haveChecksum && !checkChecksum(packet)) {
DDebug(m_sm,DebugMild,"Wrong checksum received");
m_wrongChecksum++;
DDebug(m_sm,DebugMild,"Wrong checksums received: %u",m_wrongChecksum);
return false;
}
recvMsg(packet);

View File

@ -86,7 +86,6 @@ private:
CallsQueue(const NamedList& params, const char* name);
void init();
const char* m_notify;
int m_maxCalls;
bool m_single;
bool m_detail;
};

View File

@ -158,7 +158,6 @@ public:
{ return m_password; }
private:
bool m_local;
bool m_proxy;
String m_name;
String m_address;