POE::Component::Server::NNTP::Constants - importable constants for POE::Component::Server::NNTP plugins.


POE-Component-Server-NNTP documentation Contained in the POE-Component-Server-NNTP distribution.

Index


Code Index:

NAME

Top

POE::Component::Server::NNTP::Constants - importable constants for POE::Component::Server::NNTP plugins.

SYNOPSIS

Top

  use POE::Component::Server::NNTP::Constants qw(:ALL);

DESCRIPTION

Top

POE::Component::Server::NNTP::Constants defines a number of constants that are required by the plugin system.

EXPORTS

Top

NNTPD_EAT_NONE

Value: 1

NNTPD_EAT_CLIENT

Value: 2

NNTPD_EAT_PLUGIN

Value: 3

NNTPD_EAT_ALL

Value: 4

MAINTAINER

Top

Chris 'BinGOs' Williams <chris@bingosnet.co.uk>

LICENSE

Top

Copyright © Chris Williams

This module may be used, modified, and distributed under the same terms as Perl itself. Please see the license that came with your Perl distribution for details.

SEE ALSO

Top

POE::Component::Server::NNTP


POE-Component-Server-NNTP documentation Contained in the POE-Component-Server-NNTP distribution.

package POE::Component::Server::NNTP::Constants;

require Exporter;
@ISA = qw( Exporter );
%EXPORT_TAGS = ( 'ALL' => [ qw( NNTPD_EAT_NONE NNTPD_EAT_CLIENT NNTPD_EAT_PLUGIN NNTPD_EAT_ALL ) ] );
Exporter::export_ok_tags( 'ALL' );

use strict;
use warnings;
use vars qw($VERSION);

$VERSION = '1.04';

# Our constants
sub NNTPD_EAT_NONE	() { 1 }
sub NNTPD_EAT_CLIENT	() { 2 }
sub NNTPD_EAT_PLUGIN	() { 3 }
sub NNTPD_EAT_ALL	() { 4 }

1;
__END__