line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package ThreatNet::IRC; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=pod |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
=head1 NAME |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
ThreatNet::IRC - ThreatNet IRC-specific classes |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head2 DESCRIPTION |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
The ThreatNet concept is not intended to be solely base on IRC, although it |
12
|
|
|
|
|
|
|
is the primary IPC mechanism for linking nodes together. |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
C is a base module that provides most of the IRC-specific |
15
|
|
|
|
|
|
|
classes. |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
At the present time, it contains only one class, L. |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=cut |
20
|
|
|
|
|
|
|
|
21
|
2
|
|
|
2
|
|
30443
|
use strict; |
|
2
|
|
|
|
|
7
|
|
|
2
|
|
|
|
|
101
|
|
22
|
2
|
|
|
2
|
|
8514
|
use ThreatNet::IRC::Envelope (); |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
49
|
|
23
|
|
|
|
|
|
|
|
24
|
2
|
|
|
2
|
|
14
|
use vars qw{$VERSION}; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
92
|
|
25
|
|
|
|
|
|
|
BEGIN { |
26
|
2
|
|
|
2
|
|
62
|
$VERSION = '0.20'; |
27
|
|
|
|
|
|
|
} |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
1; |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=pod |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 SUPPORT |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
All bugs should be filed via the bug tracker at |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
L |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
For other issues, or commercial enhancement and support, contact the author |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 AUTHORS |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
Adam Kennedy Eadamk@cpan.orgE |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head1 SEE ALSO |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
L |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head1 COPYRIGHT |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
Copyright (c) 2005 Adam Kennedy. All rights reserved. |
52
|
|
|
|
|
|
|
This program is free software; you can redistribute |
53
|
|
|
|
|
|
|
it and/or modify it under the same terms as Perl itself. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
The full text of the license can be found in the |
56
|
|
|
|
|
|
|
LICENSE file included with this module. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=cut |
59
|
|
|
|
|
|
|
|