#if defined(CONFIG_BCM_KF_NETFILTER) /* * Copyright (c) 2003-2012 Broadcom Corporation * All Rights Reserved * <:label-BRCM:2012:DUAL/GPL:standard This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation (the "GPL"). This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. A copy of the GPL is available at http://www.broadcom.com/licenses/GPLv2.php, or by writing to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. :> */ #include #include #include #if defined(CONFIG_BCM_KF_BLOG) && defined(CONFIG_BLOG) #include #endif MODULE_LICENSE("GPL"); MODULE_AUTHOR("Broadcom"); MODULE_DESCRIPTION("iptables stop logging module"); MODULE_ALIAS("ipt_SKIPLOG"); static unsigned int skiplog_tg(struct sk_buff *skb, const struct xt_action_param *par) { #if defined(CONFIG_BLOG_FEATURE) skb->ipt_check |= IPT_TARGET_SKIPLOG; if ( skb->ipt_check & IPT_TARGET_CHECK ) return XT_CONTINUE; #endif #if defined(CONFIG_BCM_KF_BLOG) && defined(CONFIG_BLOG) blog_skip(skb, blog_skip_reason_nf_xt_skiplog); #endif return XT_CONTINUE; } static struct xt_target skiplog_tg_reg __read_mostly = { .name = "SKIPLOG", .revision = 0, .family = NFPROTO_UNSPEC, .target = skiplog_tg, .me = THIS_MODULE, }; static int __init skiplog_tg_init(void) { return xt_register_target(&skiplog_tg_reg); } static void __exit skiplog_tg_exit(void) { xt_unregister_target(&skiplog_tg_reg); } module_init(skiplog_tg_init); module_exit(skiplog_tg_exit); #endif