package Net::IRC3; use strict; use AnyEvent; use IO::Socket::INET; our $ConnectionClass = 'Net::IRC3::Connection'; =head1 NAME Net::IRC3 - An event system independend IRC protocol module =head1 VERSION Version 0.6 =cut our $VERSION = '0.6'; =head1 SYNOPSIS Using the simplistic L: use AnyEvent; use Net::IRC3::Connection; my $c = AnyEvent->condvar; my $con = new Net::IRC3::Connection; $con->connect ("localhost", 6667); $con->reg_cb (irc_001 => sub { print "$_[1]->{prefix} says i'm in the IRC: $_[1]->{trailing}!\n"; $c->broadcast; 0 }); $con->send_msg (undef, NICK => undef, "testbot"); $con->send_msg (undef, USER => 'testbot', "testbot", '*', '0'); $c->wait; Using the more sophisticatd L: use AnyEvent; use Net::IRC3::Client::Connection; my $c = AnyEvent->condvar; my $timer; my $con = new Net::IRC3::Client::Connection; $con->reg_cb (registered => sub { print "I'm in!\n"; 0 }); $con->reg_cb (disconnect => sub { print "I'm out!\n"; 0 }); $con->reg_cb ( sent => sub { if ($_[2] eq 'PRIVMSG') { print "Sent message!\n"; $timer = AnyEvent->timer (after => 1, cb => sub { $c->broadcast }); } 1 } ); $con->send_srv (PRIVMSG => "Hello there i'm the cool Net::IRC3 test script!", 'elmex'); $con->connect ("localhost", 6667); $con->register (qw/testbot testbot testbot/); $c->wait; undef $timer; $con->disconnect; =head1 DESCRIPTION B This module is B, please use L for new programs, and possibly port existing L applications to L. Though the API of L has incompatible changes, it's still fairly similar. The L module consists of L, L and L. L only contains this documentation. It manages connections and parses and constructs IRC messages. L can be viewed as toolbox for handling IRC connections and communications. It won't do everything for you, and you still need to know a few details of the IRC protocol. L is a more highlevel IRC connection that already processes some messages for you and will generated some events that are maybe useful to you. It will also do PING replies for you and manage channels a bit. L is a lowlevel connection that only connects to the server and will let you send and receive IRC messages. L does not imply any client behaviour, you could also use it to implement an IRC server. Note that the *::Connection module uses AnyEvent as it's IO event subsystem. You can integrate them into any application with a event system that AnyEvent has support for (eg. L or L). =head1 EXAMPLES See the samples/ directory for some examples on how to use Net::IRC3. =head1 AUTHOR Robin Redeker, C<< >> =head1 SEE ALSO L L L L RFC 2812 - Internet Relay Chat: Client Protocol =head1 BUGS Please report any bugs or feature requests to C, or through the web interface at L. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. =head1 SUPPORT You can find documentation for this module with the perldoc command. perldoc Net::IRC3 You can also look for information at: =over 4 =item * AnnoCPAN: Annotated CPAN documentation L =item * CPAN Ratings L =item * RT: CPAN's request tracker L =item * Search CPAN L =back =head1 ACKNOWLEDGEMENTS Thanks to Marc Lehmann for the new AnyEvent module! =head1 COPYRIGHT & LICENSE Copyright 2006 Robin Redeker, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut 1;