| 
     
      
      
      From: <do_...@wu...> - 2013-12-31 00:44:17
      
     
   | 
Author: kurtis.heimerl Date: 2013-12-30 18:44:10 -0600 (Mon, 30 Dec 2013) New Revision: 7154 Modified: software/public/openbts/trunk/SIP/SIPEngine.cpp Log: Fixes handover assert. Basically, an earlier patch changed the RTP packet size. Modified: software/public/openbts/trunk/SIP/SIPEngine.cpp =================================================================== --- software/public/openbts/trunk/SIP/SIPEngine.cpp 2013-12-30 22:35:42 UTC (rev 7153) +++ software/public/openbts/trunk/SIP/SIPEngine.cpp 2013-12-31 00:44:10 UTC (rev 7154) @@ -1635,7 +1635,7 @@ RTPState.push_back(strtol(thisItem,NULL,10)); } free(items); - assert(RTPState.size() == 22); + assert(RTPState.size() == 19); /* Out of desperation, when the RTP refused to work, I transferred from BS1 to BS2 just about * all the state in this struct. Well, it turns out NONE of it is necessary. Something else * entirely was the problem. (Or, technically, state in a different struct.) Anyway, I'm  |