More module comments

git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@6012 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
teastep 2007-04-18 23:55:25 +00:00
parent a72ca2d1a2
commit 83d4e36214
12 changed files with 23 additions and 1 deletions

View File

@ -20,8 +20,9 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
# #
# This module contains the code that handles the /etc/shorewall/accounting
# file.
# #
package Shorewall::Accounting; package Shorewall::Accounting;
require Exporter; require Exporter;
use Shorewall::Common; use Shorewall::Common;

View File

@ -20,6 +20,8 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
# #
# This module contains the code for dealing with actions (built-in,
# standard and user-defined).
# #
package Shorewall::Actions; package Shorewall::Actions;
require Exporter; require Exporter;

View File

@ -20,6 +20,8 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
# #
# This module contains the code for dealing with the /etc/shorewall/hosts
# file.
# #
package Shorewall::Hosts; package Shorewall::Hosts;
require Exporter; require Exporter;

View File

@ -20,7 +20,11 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
# #
# This Module contains the code for processing the /etc/shorewall/interfaces
# file. It also exports 'add_group_to_zone()' which other modules call to
# alter zone membership.
# #
package Shorewall::Interfaces; package Shorewall::Interfaces;
require Exporter; require Exporter;
use Shorewall::Common; use Shorewall::Common;

View File

@ -20,6 +20,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
# #
# This module exports some low-level module-oriented functions.
# #
package Shorewall::Macros; package Shorewall::Macros;
require Exporter; require Exporter;

View File

@ -20,6 +20,8 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
# #
# This module contains code for dealing with the /etc/shorewall/masq,
# /etc/shorewall/nat and /etc/shorewall/netmap files.
# #
package Shorewall::Nat; package Shorewall::Nat;
require Exporter; require Exporter;

View File

@ -20,6 +20,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
# #
# This module deals with the /etc/shorewall/policy file.
# #
package Shorewall::Policy; package Shorewall::Policy;
require Exporter; require Exporter;

View File

@ -20,6 +20,10 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
# #
# This module contains the code that deals with entries in /proc.
#
# Note: The /proc/sys/net/ipv4/conf/x/proxy_arp flag is handled
# in the Proxyarp module.
# #
package Shorewall::Proc; package Shorewall::Proc;
require Exporter; require Exporter;

View File

@ -20,6 +20,8 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
# #
# This module deals with the /etc/shorewall/providers and
# /etc/shorewall/route_rules files.
# #
package Shorewall::Providers; package Shorewall::Providers;
require Exporter; require Exporter;

View File

@ -20,6 +20,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
# #
# This module contains the high-level code for dealing with rules.
# #
package Shorewall::Rules; package Shorewall::Rules;
require Exporter; require Exporter;

View File

@ -25,6 +25,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
# #
# This module deals with Traffic Shaping and the tcrules file.
# #
package Shorewall::Tc; package Shorewall::Tc;
require Exporter; require Exporter;

View File

@ -20,6 +20,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
# #
# This module handles the /etc/shorewall/tunnels file.
# #
package Shorewall::Tunnels; package Shorewall::Tunnels;
require Exporter; require Exporter;