| Net-ACL documentation | Contained in the Net-ACL distribution. |
Net::ACL::IPAccessExtRule - Class representing an Extended IP Access-list rule
This module represents a single extended IP access-list. It implements nothing. It defines the order of the arguments to the query function by defining constants.
The module exports the following symbols according to the rules and conventions of the Exporter module.
ACL_EIA_PROTO ACL_EIA_FROM ACL_EIA_TO
Net::ACL, Net::ACL::Rule
Martin Lorensen <bgp@martin.lorensen.dk>
| Net-ACL documentation | Contained in the Net-ACL distribution. |
#!/usr/bin/perl # $Id: IPAccessExtRule.pm,v 1.10 2003/06/06 18:45:02 unimlo Exp $ package Net::ACL::IPAccessExtRule; use strict; use vars qw( $VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS @ACL_EIA_INDEX ); ## Inheritance and Versioning ## @ISA = qw( Net::ACL::Rule ); $VERSION = '0.07'; ## Constants For Argument numbering ## sub ACL_EIA_PROTO { 0; }; sub ACL_EIA_FROM { 1; }; sub ACL_EIA_TO { 2; }; ## Export Tag Definitions ## @ACL_EIA_INDEX = qw ( ACL_EIA_PROTO ACL_EIA_FROM ACL_EIA_TO ); @EXPORT = (); @EXPORT_OK = ( @ACL_EIA_INDEX ); %EXPORT_TAGS = ( index => [ @ACL_EIA_INDEX ], ALL => [ @EXPORT, @EXPORT_OK ] ); ## POD ##
## End Package Net::ACL::IPAccessExtRule ## 1;