< Previous by Date Date Index Next by Date >
  Thread Index Next in Thread >

[reSIProcate-users] How to stop send SUBSCRIBE ?


Hi, I send a SUBSCRIBE message to server after the UA register successed:
 
 SharedPtr<SipMessage> subscription = mDum.makeSubscription(from, mMasterProfile, "message-summary");
 mDum.send(subscription);
 
But now I have encountered a problem, if the server does not respone this SUBSCRIBE message, the UA will keep send this
SUBSCRIBE, and after some times, the server replied "408 time out" to UA, but the UA still keep send the SUBSCRIBE to server
even if received 408.
 
How to let the UA stop send SUBSCRIBE to server is it's time out ?
 
 
Thanks in advance.