|
Net::IRC2 - Client interface to the Internet Relay Chat protocol. |
Net::IRC2 - Client interface to the Internet Relay Chat protocol.
!!! UNDER PROGRAMMING !!! You can use and feedback is welcome ( in english or french )
use Net::IRC2 ; my $bot = new Net::IRC2 ; my $conn = $bot->newconn( uri => 'irc://Nick!User@localhost:6667/' ) ; $conn->mode( $conn->nick, '+B' ) ; $conn->mode( '#Ailleurs +m' ) ; $bot->add_default_handler( \&process_event ) ; $bot->start ; ...
This module will provide you an access to the IRC protocol suitable to write your own IRC-Bots, or your
IRC Client. The API will provide you the sames functions than Net::IRC, so change should be trivial.
This module use Parse::RecDescent; by Dr. Conway Damian.
new()newconn()start()add_handler()add_default_handler()connections()irc_grammar()callback()=back
Please report any bugs or feature requests to
bug-net-irc2@rt.cpan.org, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
Others Perl modules working with IRC connections: Net::IRC, POE::Component::IRC
IRC Request For Comment 1459 http://www.ietf.org/rfc/rfc1459.txt
Karl Y. Pradene, <knotty@cpan.org>, irc://knotty@freenode.org/
Copyright 2005, Karl Y. Pradene <knotty@cpan.org> All rights reserved.
This program is released under the following license: GNU General Public License, version 2
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the
Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
See http://www.fsf.org/licensing/licenses/gpl.html
|
Net::IRC2 - Client interface to the Internet Relay Chat protocol. |