Browse Source

port of a3f27f8751 to kernel space

Change-Id: Ia31e7c343b569b330af1fb4e5b0a003a4f0d05b1
changes/18/12118/1
Richard Fuchs 9 years ago
parent
commit
b4694eb2e2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      kernel-module/xt_RTPENGINE.c

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

@ -3680,7 +3680,7 @@ static unsigned int rtpengine46(struct sk_buff *skb, struct rtpengine_table *t,
u32 = (void *) skb->data;
if (u32[1] != htonl(0x2112A442UL)) /* magic cookie */
goto not_stun;
if ((u32[0] & htonl(0xb0000003UL))) /* zero bits required by rfc */
if ((u32[0] & htonl(0xc0000003UL))) /* zero bits required by rfc */
goto not_stun;
u32 = (void *) &skb->data[datalen - 8];
if (u32[0] != htonl(0x80280004UL)) /* required fingerprint attribute */


Loading…
Cancel
Save