Browse Source

MT#63317 fix AEAD encryption with header extension

Change-Id: I75ddb3f4b711b31f21a240b04ac680a31894fa16
pull/2018/head
Richard Fuchs 2 months ago
parent
commit
ce951ab320
2 changed files with 2 additions and 0 deletions
  1. +1
    -0
      kernel-module/extmap_filter.inc.c
  2. +1
    -0
      t/kernel-extmap-filter.c

+ 1
- 0
kernel-module/extmap_filter.inc.c View File

@ -241,6 +241,7 @@ static void apply_extmap_filter(struct sk_buff *skb, struct rtpengine_output *o,
else
add_extmap_hdr_short(skb, o, rtp);
}
rtp->header_len = rtp->payload - (unsigned char *) rtp->rtp_header;
}

+ 1
- 0
t/kernel-extmap-filter.c View File

@ -35,6 +35,7 @@ struct rtp_exthdr {
struct rtp_parsed {
struct rtp_header *rtp_header;
size_t header_len;
unsigned char *payload;
size_t payload_len;
struct rtp_exthdr *ext_hdr;


Loading…
Cancel
Save