=head1 NAME EV - perl interface to libevent, monkey.org/~provos/libevent/ =head1 SYNOPSIS use EV; =head1 DESCRIPTION This module provides an interface to libevent (L). =cut package EV; use strict; BEGIN { our $VERSION = '0.01'; use XSLoader; XSLoader::load "EV", $VERSION; } =head1 FUNCTIONAL INTERFACE =over 4 =back =head1 OBJECT-ORIENTED INTERFACE The object oriented interface lets you configure your own encoding or decoding style, within the limits of supported formats. =over 4 =back =head1 BUGS =cut our $NPRI = 4; our $BASE = init; priority_init $NPRI; 1; =head1 AUTHOR Marc Lehmann http://home.schmorp.de/ =cut