Module: kamailio Branch: master Commit: 6fc2102ca771f5a64bd058eee08dd537f6b804e0 URL: https://github.com/kamailio/kamailio/commit/6fc2102ca771f5a64bd058eee08dd537f6b804e0
Author: herlesupreeth <[email protected]> Committer: Victor Seva <[email protected]> Date: 2026-03-01T15:18:25+01:00 ims_qos: fix incrementing of SDP stream number --- Modified: src/modules/ims_qos/rx_aar.c --- Diff: https://github.com/kamailio/kamailio/commit/6fc2102ca771f5a64bd058eee08dd537f6b804e0.diff Patch: https://github.com/kamailio/kamailio/commit/6fc2102ca771f5a64bd058eee08dd537f6b804e0.patch --- diff --git a/src/modules/ims_qos/rx_aar.c b/src/modules/ims_qos/rx_aar.c index 43701ba20bb..c987e21e9ae 100644 --- a/src/modules/ims_qos/rx_aar.c +++ b/src/modules/ims_qos/rx_aar.c @@ -701,11 +701,10 @@ int add_media_components(AAAMessage *aar, struct sip_msg *req, &req_sdp_stream->raw_stream, &rpl_sdp_stream->raw_stream, direction, AVP_EPC_Flow_Usage_No_Information); - - sdp_stream_num++; } } } + sdp_stream_num++; } sdp_session_num++; } _______________________________________________ Kamailio - Development Mailing List -- [email protected] To unsubscribe send an email to [email protected] Important: keep the mailing list in the recipients, do not reply only to the sender!
