Skip to content
Snippets Groups Projects
Commit 544fe738 authored by zuul's avatar zuul Committed by Gerrit Code Review
Browse files

Merge "chan_sip: Fix session timeout on retransmit of non-UDP packets"

parents f99155dd 6ba68b48
No related branches found
No related tags found
No related merge requests found
......@@ -4243,7 +4243,10 @@ static enum sip_result __sip_reliable_xmit(struct sip_pvt *p, uint32_t seqno, in
pkt->retrans_stop_time = 64 * (pkt->timer_t1 ? pkt->timer_t1 : DEFAULT_TIMER_T1); /* time in ms after pkt->time_sent to stop retransmission */
 
if (!(p->socket.type & AST_TRANSPORT_UDP)) {
/* TCP does not need retransmits as that's built in, but with
* retrans_stop set, we must give it the full timer_H treatment */
pkt->retrans_stop = 1;
siptimer_a = pkt->retrans_stop_time;
}
 
/* Schedule retransmission */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment