From: Gao Feng <fgao@xxxxxxxxxx> The current sip codes should use NF_DROP and NF_ACCEPT instead of the literal number 0 and 1. Signed-off-by: Gao Feng <fgao@xxxxxxxxxx> --- net/netfilter/nf_nat_sip.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/net/netfilter/nf_nat_sip.c b/net/netfilter/nf_nat_sip.c index 791fac4..a093979 100644 --- a/net/netfilter/nf_nat_sip.c +++ b/net/netfilter/nf_nat_sip.c @@ -48,7 +48,7 @@ static unsigned int mangle_packet(struct sk_buff *skb, unsigned int protoff, if (!__nf_nat_mangle_tcp_packet(skb, ct, ctinfo, protoff, matchoff, matchlen, buffer, buflen, false)) - return 0; + return NF_DROP; } else { baseoff = protoff + sizeof(struct udphdr); matchoff += dataoff - baseoff; @@ -56,13 +56,13 @@ static unsigned int mangle_packet(struct sk_buff *skb, unsigned int protoff, if (!nf_nat_mangle_udp_packet(skb, ct, ctinfo, protoff, matchoff, matchlen, buffer, buflen)) - return 0; + return NF_DROP; } /* Reload data pointer and adjust datalen value */ *dptr = skb->data + dataoff; *datalen += buflen - matchlen; - return 1; + return NF_ACCEPT; } static int sip_sprintf_addr(const struct nf_conn *ct, char *buffer, -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html