r4230 in private: Do not create a new transaction if a call error condition can be identified early enough in SIPInterface::checkInvite.

r4229 in private: Added accessor for L3 CC Call State element.

git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@4354 19bc5d8c-e614-43d4-8b26-e1612bc8e597
This commit is contained in:
Kurtis Heimerl
2012-10-26 06:26:55 +00:00
parent 94787fbcd9
commit 272297cae9
3 changed files with 53 additions and 8 deletions

View File

@@ -68,6 +68,9 @@ class L3CMServiceType : public L3ProtocolElement {
bool operator==(const L3CMServiceType& other) const
{ return mType == other.mType; }
bool operator!=(const L3CMServiceType& other) const
{ return mType != other.mType; }
size_t lengthV() const { return 0; }
void writeV(L3Frame&, size_t&) const { assert(0); }