From 1f9cd2e1d7f1fd18693eb287b9ea7b10bd3b3123 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Wed, 30 Jul 2025 12:53:06 -0400 Subject: [PATCH] MT#63317 rename rtp_extension to rtp_exthdr for consistency Change-Id: Idac591d68729dd186e76950ca3af47f760a6c5cf --- kernel-module/xt_RTPENGINE.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel-module/xt_RTPENGINE.c b/kernel-module/xt_RTPENGINE.c index 6824478be..158ff0f0c 100644 --- a/kernel-module/xt_RTPENGINE.c +++ b/kernel-module/xt_RTPENGINE.c @@ -499,7 +499,7 @@ struct rtcp_header { uint16_t length; uint32_t ssrc; } __attribute__ ((packed)); -struct rtp_extension { +struct rtp_exthdr { uint16_t undefined; uint16_t length; } __attribute__ ((packed)); @@ -5131,7 +5131,7 @@ drop: /* XXX shared code */ static void parse_rtp(struct rtp_parsed *rtp, struct sk_buff *skb) { - struct rtp_extension *ext; + struct rtp_exthdr *ext; size_t ext_len; if (skb->len < sizeof(*rtp->rtp_header))