Net::ACL::IPAccessExtRule - Class representing an Extended IP Access-list rule


Net-ACL documentation Contained in the Net-ACL distribution.

Index


Code Index:

NAME

Top

Net::ACL::IPAccessExtRule - Class representing an Extended IP Access-list rule

DESCRIPTION

Top

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.

EXPORTS

Top

The module exports the following symbols according to the rules and conventions of the Exporter module.

:index
	ACL_EIA_PROTO ACL_EIA_FROM ACL_EIA_TO

SEE ALSO

Top

Net::ACL, Net::ACL::Rule

AUTHOR

Top

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;