Fix comments -- reflect changes done during the irule implementation

Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
Tom Eastep 2012-02-01 13:53:12 -08:00
parent 45a1f9df4f
commit ab04a7fb46

View File

@ -6012,7 +6012,7 @@ sub add_interface_options( $ ) {
} }
# #
# The following code generates the input to iptables-restore from the contents of the # The following functions generate the input to iptables-restore from the contents of the
# @rules arrays in the chain table entries. # @rules arrays in the chain table entries.
# #
# We always write the iptables-restore input into a file then pass the # We always write the iptables-restore input into a file then pass the
@ -6020,9 +6020,9 @@ sub add_interface_options( $ ) {
# has (have) something to look at to determine the error # has (have) something to look at to determine the error
# #
# We may have to generate part of the input at run-time. The rules array in each chain # We may have to generate part of the input at run-time. The rules array in each chain
# table entry may contain both rules (begin with '-A') or shell source. We alternate between # table entry may contain both rules or shell source, determined by the contents of the 'mode'
# writing the rules ('-A') into the temporary file to be passed to iptables-restore # member. We alternate between writing the rules into the temporary file to be passed to
# (CAT_MODE) and and writing shell source into the generated script (CMD_MODE). # iptables-restore (CAT_MODE) and and writing shell source into the generated script (CMD_MODE).
# #
# The following two functions are responsible for the mode transitions. # The following two functions are responsible for the mode transitions.
# #