Browse Source

MT#63317 rename rtp_extension to rtp_exthdr

for consistency

Change-Id: Idac591d68729dd186e76950ca3af47f760a6c5cf
pull/2008/head
Richard Fuchs 5 months ago
parent
commit
1f9cd2e1d7
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      kernel-module/xt_RTPENGINE.c

+ 2
- 2
kernel-module/xt_RTPENGINE.c View File

@ -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))


Loading…
Cancel
Save