The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Net::IRC2 - The great new Net::IRC2!

VERSION

Version 0.00_03

SYNOPSIS

OO module to manage IRC connection.

    use Net::IRC2                                                        ;

    my $bot  = new Net::IRC2                                             ;
    my $conn = $bot->newconn( uri => 'irc://Nick!User@localhost:6667/' ) ;

    $conn->mode(    $conn->nick,'+B' )                                   ;
    $bot->callback( \&process_event  )                                   ;
    $bot->start                                                          ;
    ...

FUNCTIONS

new =head2 newconn =head2 callback =head2 start

AUTHOR

Karl Y. Pradene, <knotty@cpan.org>

BUGS

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?Queue=Net-IRC2. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

ACKNOWLEDGEMENTS

SEE ALSO

Net::IRC POE::Component::IRC

COPYRIGHT & LICENSE

Copyright 2005, Karl Y. Pradene <knotty@cpan.org> All rights reserved.

This program is released under the following license: GPL v2

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>