From a202cf43c7a8a58847f9d6c147ee98460f0a200a Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Wed, 15 Mar 2023 11:58:16 +0100 Subject: [PATCH] rtp_stream: Update id after modifying fields upon Tx of MGCP msg Change-Id: Ifbcab2d07df96d2a826e8235306b18df9573802c --- src/libmsc/rtp_stream.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libmsc/rtp_stream.c b/src/libmsc/rtp_stream.c index 61b5ea98b..f977cdd76 100644 --- a/src/libmsc/rtp_stream.c +++ b/src/libmsc/rtp_stream.c @@ -324,6 +324,7 @@ static int rtp_stream_do_mgcp_verb(struct rtp_stream *rtps, enum mgcp_verb verb, verb_info.port = rtps->remote.port; rtps->remote_sent_to_mgw = true; } + rtp_stream_update_id(rtps); osmo_mgcpc_ep_ci_request(rtps->ci, verb, &verb_info, rtps->fi, ok_event, fail_event, NULL); return 0;