コード例 #1
0
ファイル: libxt_hashlimit.c プロジェクト: inibir/daemongroup
void _init(void)
{
	xtables_register_match(&hashlimit_match);
	xtables_register_match(&hashlimit_match6);
	xtables_register_match(&hashlimit_mt_reg);
	xtables_register_match(&hashlimit_mt6_reg);
}
コード例 #2
0
ファイル: libxt_conntrack.c プロジェクト: OPSF/uClinux
void _init(void)
{
	xtables_register_match(&conntrack_mt_v0_reg);
	xtables_register_match(&conntrack_mt_v1_reg);
	xtables_register_match(&conntrack_mt6_v1_reg);
	xtables_register_match(&conntrack_mt_v2_reg);
	xtables_register_match(&conntrack_mt6_v2_reg);
}
コード例 #3
0
ファイル: libxt_opendpi.c プロジェクト: IoveSunny/DreamBox
void _init(void)
{
        int i;

        for (i = 0; i < IPOQUE_MAX_SUPPORTED_PROTOCOLS; i++){
                opendpi_mt_opts[i].name = prot_short_str[i+1];
                opendpi_mt_opts[i].has_arg = false;
                opendpi_mt_opts[i].val = i+1;
        }
        opendpi_mt_opts[i].name = NULL;
        opendpi_mt_opts[i].flag = NULL;
        opendpi_mt_opts[i].has_arg = 0;
        opendpi_mt_opts[i].val = 0;

	xtables_register_match(&opendpi_mt4_reg);
}
コード例 #4
0
void libipt_ttl_init(void) 
{
	xtables_register_match(&ttl_mt_reg);
}
コード例 #5
0
ファイル: libxt_physdev.c プロジェクト: Einheri/wl500g
void _init(void)
{
	xtables_register_match(&physdev_match);
}
コード例 #6
0
ファイル: libxt_time.c プロジェクト: 174high/iptables_visteon
void _init(void)
{
	xtables_register_match(&time_match);
}
コード例 #7
0
void _init(void) //lint -esym(714, ipt_dns_flt_init)
{
    xtables_register_match(&dns_flt);
}
コード例 #8
0
ファイル: libxt_recent.c プロジェクト: AllardJ/Tomato
void _init(void)
{
	xtables_register_match(&recent_mt_reg);
}
コード例 #9
0
void libxt_cluster_init(void)
{
	xtables_register_match(&cluster_mt_reg);
}
コード例 #10
0
ファイル: libxt_dccp.c プロジェクト: krishnak9/iptables_clone
void _init(void)
{
	xtables_register_match(&dccp_match);
}
コード例 #11
0
void libipt_icmp_init(void)
{
	xtables_register_match(&icmp_mt_reg);
}
コード例 #12
0
ファイル: libxt_helper.c プロジェクト: OPSF/uClinux
void _init(void)
{
	xtables_register_match(&helper_match);
	xtables_register_match(&helper_match6);
}
コード例 #13
0
ファイル: libip6t_hl.c プロジェクト: krishnak9/iptables_clone
void _init(void) 
{
	xtables_register_match(&hl_mt6_reg);
}
コード例 #14
0
ファイル: libxt_bpf.c プロジェクト: hynnet/iptables
void _init(void)
{
    xtables_register_match(&bpf_match);
}
コード例 #15
0
ファイル: libxt_cpu.c プロジェクト: wertarbyte/iptables
void _init(void)
{
	xtables_register_match(&cpu_match);
}
コード例 #16
0
void _init(void)
{
	xtables_register_match(&devgroup_mt_reg);
}
コード例 #17
0
static __attribute__((constructor)) void quota2_mt_ldr(void)
{
	xtables_register_match(&quota_mt2_reg);
}
void INIT_FUNC(void)
{
	xtables_register_match(&physdev_match);
}
コード例 #19
0
ファイル: libipt_ah.c プロジェクト: Einheri/wl500g
void
_init(void)
{
	xtables_register_match(&ah_mt_reg);
}
コード例 #20
0
ファイル: libipt_ah.c プロジェクト: 2856571872/droidwall
void
libipt_ah_init(void)
{
	xtables_register_match(&ah_mt_reg);
}
コード例 #21
0
ファイル: libxt_comment.c プロジェクト: OPSF/uClinux
void _init(void)
{
	xtables_register_match(&comment_match);
	xtables_register_match(&comment_match6);
}
コード例 #22
0
ファイル: libxt_statistic.c プロジェクト: Einheri/wl500g
void _init(void)
{
	xtables_register_match(&statistic_match);
}
コード例 #23
0
void libxt_udp_init(void)
{
	xtables_register_match(&udp_match);
}
void INIT_FUNC(void)
{
	xtables_register_match(&socket_mt_reg);
}
コード例 #25
0
ファイル: libxt_psd.c プロジェクト: jfenderico/xtables-addons
static __attribute__((constructor)) void psd_mt_ldr(void)
{
	xtables_register_match(&psd_mt_reg);
}
コード例 #26
0
void _init(void)
{
	xtables_register_match(&length_match);
}
コード例 #27
0
ファイル: libxt_u32.c プロジェクト: AllardJ/Tomato
void _init(void)
{
	xtables_register_match(&u32_match);
}
コード例 #28
0
void _init(void)
{
	xtables_register_match(&pkttype_match);
}
コード例 #29
0
void xtables_register_matches(struct xtables_match *match, unsigned int n)
{
	do {
		xtables_register_match(&match[--n]);
	} while (n > 0);
}
コード例 #30
0
void libxt_u32_init(void)
{
    xtables_register_match(&u32_match);
}