ip_fw.h (9c79794016d679440487dea61b3b986397c9ecbb) | ip_fw.h (f6dfe47a145263dc5eb67fa4789925ab708709bc) |
---|---|
1/*- 2 * Copyright (c) 2002 Luigi Rizzo, Universita` di Pisa 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 1. Redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer. --- 681 unchanged lines hidden (view full) --- 690 */ 691struct vnet_ipfw { 692 int _fw_enable; 693 int _fw6_enable; 694 u_int32_t _set_disable; 695 int _fw_deny_unknown_exthdrs; 696 int _fw_verbose; 697 int _verbose_limit; | 1/*- 2 * Copyright (c) 2002 Luigi Rizzo, Universita` di Pisa 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 1. Redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer. --- 681 unchanged lines hidden (view full) --- 690 */ 691struct vnet_ipfw { 692 int _fw_enable; 693 int _fw6_enable; 694 u_int32_t _set_disable; 695 int _fw_deny_unknown_exthdrs; 696 int _fw_verbose; 697 int _verbose_limit; |
698 int _fw_debug; /* actually unused */ | |
699 int _autoinc_step; 700 ipfw_dyn_rule **_ipfw_dyn_v; 701 uma_zone_t _ipfw_dyn_rule_zone; 702 struct ip_fw_chain _layer3_chain; 703 u_int32_t _dyn_buckets; 704 u_int32_t _curr_dyn_buckets; 705 u_int32_t _dyn_ack_lifetime; 706 u_int32_t _dyn_syn_lifetime; --- 28 unchanged lines hidden (view full) --- 735#define VNET_IPFW(sym) VSYM(vnet_ipfw, sym) 736 737#define V_fw_enable VNET_IPFW(fw_enable) 738#define V_fw6_enable VNET_IPFW(fw6_enable) 739#define V_set_disable VNET_IPFW(set_disable) 740#define V_fw_deny_unknown_exthdrs VNET_IPFW(fw_deny_unknown_exthdrs) 741#define V_fw_verbose VNET_IPFW(fw_verbose) 742#define V_verbose_limit VNET_IPFW(verbose_limit) | 698 int _autoinc_step; 699 ipfw_dyn_rule **_ipfw_dyn_v; 700 uma_zone_t _ipfw_dyn_rule_zone; 701 struct ip_fw_chain _layer3_chain; 702 u_int32_t _dyn_buckets; 703 u_int32_t _curr_dyn_buckets; 704 u_int32_t _dyn_ack_lifetime; 705 u_int32_t _dyn_syn_lifetime; --- 28 unchanged lines hidden (view full) --- 734#define VNET_IPFW(sym) VSYM(vnet_ipfw, sym) 735 736#define V_fw_enable VNET_IPFW(fw_enable) 737#define V_fw6_enable VNET_IPFW(fw6_enable) 738#define V_set_disable VNET_IPFW(set_disable) 739#define V_fw_deny_unknown_exthdrs VNET_IPFW(fw_deny_unknown_exthdrs) 740#define V_fw_verbose VNET_IPFW(fw_verbose) 741#define V_verbose_limit VNET_IPFW(verbose_limit) |
743#define V_fw_debug VNET_IPFW(fw_debug) | |
744#define V_autoinc_step VNET_IPFW(autoinc_step) 745#define V_ipfw_dyn_v VNET_IPFW(ipfw_dyn_v) 746#define V_ipfw_dyn_rule_zone VNET_IPFW(ipfw_dyn_rule_zone) 747#define V_layer3_chain VNET_IPFW(layer3_chain) 748#define V_dyn_buckets VNET_IPFW(dyn_buckets) 749#define V_curr_dyn_buckets VNET_IPFW(curr_dyn_buckets) 750#define V_dyn_ack_lifetime VNET_IPFW(dyn_ack_lifetime) 751#define V_dyn_syn_lifetime VNET_IPFW(dyn_syn_lifetime) --- 17 unchanged lines hidden --- | 742#define V_autoinc_step VNET_IPFW(autoinc_step) 743#define V_ipfw_dyn_v VNET_IPFW(ipfw_dyn_v) 744#define V_ipfw_dyn_rule_zone VNET_IPFW(ipfw_dyn_rule_zone) 745#define V_layer3_chain VNET_IPFW(layer3_chain) 746#define V_dyn_buckets VNET_IPFW(dyn_buckets) 747#define V_curr_dyn_buckets VNET_IPFW(curr_dyn_buckets) 748#define V_dyn_ack_lifetime VNET_IPFW(dyn_ack_lifetime) 749#define V_dyn_syn_lifetime VNET_IPFW(dyn_syn_lifetime) --- 17 unchanged lines hidden --- |