| POE-Component-Server-POP3 documentation | Contained in the POE-Component-Server-POP3 distribution. |
POE::Component::Server::POP3::Constants - importable constants for POE::Component::Server::POP3 plugins.
use POE::Component::Server::POP3::Constants qw(:ALL);
POE::Component::Server::POP3::Constants defines a number of constants that are required by the plugin system.
POP3D_EAT_NONEValue: 1
POP3D_EAT_CLIENTValue: 2
POP3D_EAT_PLUGINValue: 3
POP3D_EAT_ALLValue: 4
Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
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.
| POE-Component-Server-POP3 documentation | Contained in the POE-Component-Server-POP3 distribution. |
package POE::Component::Server::POP3::Constants; require Exporter; @ISA = qw( Exporter ); %EXPORT_TAGS = ( 'ALL' => [ qw( POP3D_EAT_NONE POP3D_EAT_CLIENT POP3D_EAT_PLUGIN POP3D_EAT_ALL ) ] ); Exporter::export_ok_tags( 'ALL' ); use strict; use warnings; use vars qw($VERSION); $VERSION = '0.10'; # Our constants sub POP3D_EAT_NONE () { 1 } sub POP3D_EAT_CLIENT () { 2 } sub POP3D_EAT_PLUGIN () { 3 } sub POP3D_EAT_ALL () { 4 } 1; __END__