Changeset 3925

Show
Ignore:
Timestamp:
07/24/2012 12:55:51 AM (10 months ago)
Author:
kurtis.heimerl
Message:

Set state to fail instead of throwing a timeout in MOSMSWaitForSubmit

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • openbts/trunk/SIP/SIPEngine.cpp

    r3923 r3925  
    11951195 
    11961196        if (!ok) { 
     1197                //changed from "throw SIPTimeout()", as this seems more correct -k 
     1198                mState = Fail; 
    11971199                LOG(ALERT) << "SIP MESSAGE timed out; is the smqueue server " << mProxyIP << ":" << mProxyPort << " OK?"; 
    1198                 throw SIPTimeout(); 
    11991200        } else { 
    12001201                osip_message_free(ok);