Skip to content

Commit

Permalink
topos: catch INFO requests during early dialog phase
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Apr 28, 2022
1 parent dc2ef8e commit 67da730
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/topos/tps_msg.c
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ int tps_request_received(sip_msg_t *msg, int dialog)
goto error;
}
metid = get_cseq(msg)->method_id;
if((metid & (METHOD_BYE|METHOD_PRACK|METHOD_UPDATE))
if((metid & (METHOD_BYE|METHOD_INFO|METHOD_PRACK|METHOD_UPDATE))
&& stsd.b_contact.len <= 0) {
/* no B-side contact, look for INVITE transaction record */
if(metid & (METHOD_BYE|METHOD_UPDATE)) {
Expand Down

0 comments on commit 67da730

Please sign in to comment.