… | |
… | |
9 | |
9 | |
10 | Net::IRC3 - An event system independend IRC protocol module |
10 | Net::IRC3 - An event system independend IRC protocol module |
11 | |
11 | |
12 | =head1 VERSION |
12 | =head1 VERSION |
13 | |
13 | |
14 | Version 0.5 |
14 | Version 0.6 |
15 | |
15 | |
16 | =cut |
16 | =cut |
17 | |
17 | |
18 | our $VERSION = '0.5'; |
18 | our $VERSION = '0.6'; |
19 | |
19 | |
20 | =head1 SYNOPSIS |
20 | =head1 SYNOPSIS |
21 | |
21 | |
22 | Using the simplistic L<Net::IRC3::Connection>: |
22 | Using the simplistic L<Net::IRC3::Connection>: |
23 | |
23 | |
… | |
… | |
67 | undef $timer; |
67 | undef $timer; |
68 | |
68 | |
69 | $con->disconnect; |
69 | $con->disconnect; |
70 | |
70 | |
71 | =head1 DESCRIPTION |
71 | =head1 DESCRIPTION |
|
|
72 | |
|
|
73 | B<NOTE:> This module is B<DEPRECATED>, please use L<AnyEvent::IRC> for new programs, |
|
|
74 | and possibly port existing L<Net::IRC3> applications to L<AnyEvent::IRC>. Though the |
|
|
75 | API of L<AnyEvent::IRC> has incompatible changes, it's still fairly similar. |
72 | |
76 | |
73 | The L<Net::IRC3> module consists of L<Net::IRC3::Connection>, L<Net::IRC3::Client::Connection> |
77 | The L<Net::IRC3> module consists of L<Net::IRC3::Connection>, L<Net::IRC3::Client::Connection> |
74 | and L<Net::IRC3::Util>. L<Net::IRC3> only contains this documentation. |
78 | and L<Net::IRC3::Util>. L<Net::IRC3> only contains this documentation. |
75 | It manages connections and parses and constructs IRC messages. |
79 | It manages connections and parses and constructs IRC messages. |
76 | |
80 | |