line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::IRC3::Util; |
2
|
1
|
|
|
1
|
|
4009
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
38
|
|
3
|
1
|
|
|
1
|
|
5
|
no warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
32
|
|
4
|
1
|
|
|
1
|
|
4
|
use Exporter; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
2312
|
|
5
|
|
|
|
|
|
|
our @ISA = qw/Exporter/; |
6
|
|
|
|
|
|
|
our @EXPORT_OK = |
7
|
|
|
|
|
|
|
qw(mk_msg parse_irc_msg split_prefix prefix_nick |
8
|
|
|
|
|
|
|
decode_ctcp encode_ctcp filter_ctcp_text_attr prefix_user prefix_host |
9
|
|
|
|
|
|
|
rfc_code_to_name filter_colors); |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Net::IRC3::Util - Common utilities that help with IRC protocol handling |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 SYNOPSIS |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
use Net::IRC3 qw/parse_irc_msg mk_msg/; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
my $msgdata = mk_msg (undef, PRIVMSG => "my hands glow!", "mcmanus"); |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 FUNCTIONS |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
These are some utility functions that might come in handy when |
24
|
|
|
|
|
|
|
handling the IRC protocol. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
You can export these with eg.: |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
use Net::IRC3 qw/parse_irc_msg/; |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=over 4 |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=item B |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
This method parses the C<$ircline>, which is one line of the IRC protocol |
35
|
|
|
|
|
|
|
without the trailing "\015\012". |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
It returns a hash which has the following entrys: |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=over 4 |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=item prefix |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
The message prefix. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=item command |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
The IRC command. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=item params |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
The parameters to the IRC command in a array reference, |
52
|
|
|
|
|
|
|
this includes the trailing parameter (the one after the ':' or |
53
|
|
|
|
|
|
|
the 14th parameter). |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=item trailing |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
This is set if there was a trailing parameter (the one after the ':' or |
58
|
|
|
|
|
|
|
the 14th parameter). |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=back |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=cut |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
sub parse_irc_msg { |
65
|
0
|
|
|
0
|
1
|
|
my ($msg) = @_; |
66
|
|
|
|
|
|
|
|
67
|
0
|
|
|
|
|
|
my $cmd; |
68
|
|
|
|
|
|
|
my $pref; |
69
|
0
|
|
|
|
|
|
my $t; |
70
|
0
|
|
|
|
|
|
my @a; |
71
|
|
|
|
|
|
|
|
72
|
0
|
|
|
|
|
|
my $p = $msg =~ s/^(:([^ ]+)[ ])?([A-Za-z]+|\d{3})//; |
73
|
0
|
|
|
|
|
|
$pref = $2; |
74
|
0
|
|
|
|
|
|
$cmd = $3; |
75
|
|
|
|
|
|
|
|
76
|
0
|
|
|
|
|
|
my $i = 0; |
77
|
|
|
|
|
|
|
|
78
|
0
|
|
|
|
|
|
while ($msg =~ s/^[ ]([^ :\015\012\0][^ \015\012\0]*)//) { |
79
|
|
|
|
|
|
|
|
80
|
0
|
0
|
|
|
|
|
push @a, $1 if defined $1; |
81
|
0
|
0
|
|
|
|
|
if (++$i > 13) { last; } |
|
0
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
} |
83
|
|
|
|
|
|
|
|
84
|
0
|
0
|
|
|
|
|
if ($i == 14) { |
85
|
|
|
|
|
|
|
|
86
|
0
|
0
|
|
|
|
|
if ($msg =~ s/^[ ]:?([^\015\012\0]*)//) { |
87
|
0
|
0
|
|
|
|
|
$t = $1 if $1 ne ""; |
88
|
|
|
|
|
|
|
} |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
} else { |
91
|
|
|
|
|
|
|
|
92
|
0
|
0
|
|
|
|
|
if ($msg =~ s/^[ ]:([^\015\012\0]*)//) { |
93
|
0
|
0
|
|
|
|
|
$t = $1 if $1 ne ""; |
94
|
|
|
|
|
|
|
} |
95
|
|
|
|
|
|
|
} |
96
|
|
|
|
|
|
|
|
97
|
0
|
0
|
|
|
|
|
push @a, $t if defined $t; |
98
|
|
|
|
|
|
|
|
99
|
0
|
|
|
|
|
|
my $m = { prefix => $pref, command => $cmd, params => \@a, trailing => $t }; |
100
|
0
|
0
|
|
|
|
|
return $p ? $m : undef; |
101
|
|
|
|
|
|
|
} |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
=item B |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
This function assembles a IRC message. The generated |
106
|
|
|
|
|
|
|
message will look like (pseudo code!) |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
: : |
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
Please refer to RFC 2812 how IRC messages normally look like. |
111
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
The prefix and the trailing string will be omitted if they are C. |
113
|
|
|
|
|
|
|
|
114
|
|
|
|
|
|
|
EXAMPLES: |
115
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
mk_msg (undef, "PRIVMSG", "you suck!", "magnus"); |
117
|
|
|
|
|
|
|
# will return: "PRIVMSG magnus :you suck!\015\012" |
118
|
|
|
|
|
|
|
|
119
|
|
|
|
|
|
|
mk_msg (undef, "JOIN", undef, "#test"); |
120
|
|
|
|
|
|
|
# will return: "JOIN #test\015\012" |
121
|
|
|
|
|
|
|
|
122
|
|
|
|
|
|
|
=cut |
123
|
|
|
|
|
|
|
|
124
|
|
|
|
|
|
|
sub mk_msg { |
125
|
0
|
|
|
0
|
1
|
|
my ($prefix, $command, $trail, @params) = @_; |
126
|
0
|
|
|
|
|
|
my $msg = ""; |
127
|
|
|
|
|
|
|
|
128
|
0
|
0
|
|
|
|
|
$msg .= defined $prefix ? ":$prefix " : ""; |
129
|
0
|
|
|
|
|
|
$msg .= "$command"; |
130
|
|
|
|
|
|
|
|
131
|
|
|
|
|
|
|
# FIXME: params must be counted, and if > 13 they have to be |
132
|
|
|
|
|
|
|
# concationated with $trail |
133
|
0
|
|
|
|
|
|
map { $msg .= " $_" } @params; |
|
0
|
|
|
|
|
|
|
134
|
|
|
|
|
|
|
|
135
|
0
|
0
|
|
|
|
|
$msg .= defined $trail ? " :$trail" : ""; |
136
|
0
|
|
|
|
|
|
$msg .= "\015\012"; |
137
|
|
|
|
|
|
|
|
138
|
0
|
|
|
|
|
|
return $msg; |
139
|
|
|
|
|
|
|
} |
140
|
|
|
|
|
|
|
|
141
|
|
|
|
|
|
|
my @_ctcp_lowlevel_escape = ("\000", "0", "\012", "n", "\015", "r", "\020", "\020"); |
142
|
|
|
|
|
|
|
|
143
|
|
|
|
|
|
|
sub unescape_lowlevel { |
144
|
0
|
|
|
0
|
0
|
|
my ($data) = @_; |
145
|
0
|
|
|
|
|
|
my %map = reverse @_ctcp_lowlevel_escape; |
146
|
0
|
0
|
|
|
|
|
$data =~ s/\020(.)/defined $map{$1} ? $map{$1} : $1/ge; |
|
0
|
|
|
|
|
|
|
147
|
0
|
|
|
|
|
|
$data |
148
|
|
|
|
|
|
|
} |
149
|
|
|
|
|
|
|
|
150
|
|
|
|
|
|
|
sub escape_lowlevel { |
151
|
0
|
|
|
0
|
0
|
|
my ($data) = @_; |
152
|
0
|
|
|
|
|
|
my %map = @_ctcp_lowlevel_escape; |
153
|
0
|
|
|
|
|
|
$data =~ s/([\000\012\015\020])/"\020$map{$1}"/ge; |
|
0
|
|
|
|
|
|
|
154
|
0
|
|
|
|
|
|
$data |
155
|
|
|
|
|
|
|
} |
156
|
|
|
|
|
|
|
|
157
|
|
|
|
|
|
|
sub unescape_ctcp { |
158
|
0
|
|
|
0
|
0
|
|
my ($data) = @_; |
159
|
0
|
0
|
|
|
|
|
$data =~ s/\\(.)/$1 eq 'a' ? "\001" : ($1 eq "\\" ? "\\" : $1)/eg; |
|
0
|
0
|
|
|
|
|
|
160
|
0
|
|
|
|
|
|
$data |
161
|
|
|
|
|
|
|
} |
162
|
|
|
|
|
|
|
|
163
|
|
|
|
|
|
|
sub escape_ctcp { |
164
|
0
|
|
|
0
|
0
|
|
my ($data) = @_; |
165
|
0
|
0
|
|
|
|
|
$data =~ s/([\\\001])/$1 eq "\001" ? "\\a" : "\\\\"/eg; |
|
0
|
|
|
|
|
|
|
166
|
0
|
|
|
|
|
|
$data |
167
|
|
|
|
|
|
|
} |
168
|
|
|
|
|
|
|
|
169
|
|
|
|
|
|
|
=item B |
170
|
|
|
|
|
|
|
|
171
|
|
|
|
|
|
|
This function decodes the C<$trailing> part of an IRC message. |
172
|
|
|
|
|
|
|
It will first unescape the lower layer, extract CTCP messages |
173
|
|
|
|
|
|
|
and then return a list with two elements: the line without the ctcp messages |
174
|
|
|
|
|
|
|
and an array reference which contains array references of CTCP messages. |
175
|
|
|
|
|
|
|
Those CTCP message array references will have the CTCP message tag as |
176
|
|
|
|
|
|
|
first element (eg. "VERSION") and the rest of the CTCP message as the second |
177
|
|
|
|
|
|
|
element. |
178
|
|
|
|
|
|
|
|
179
|
|
|
|
|
|
|
=cut |
180
|
|
|
|
|
|
|
|
181
|
|
|
|
|
|
|
sub decode_ctcp { |
182
|
0
|
|
|
0
|
1
|
|
my ($line) = @_; |
183
|
|
|
|
|
|
|
|
184
|
0
|
|
|
|
|
|
$line = unescape_lowlevel ($line); |
185
|
0
|
|
|
|
|
|
my @ctcp; |
186
|
0
|
|
|
|
|
|
while ($line =~ /\G\001([^\001]*)\001/g) { |
187
|
0
|
|
|
|
|
|
my $msg = unescape_ctcp ($1); |
188
|
0
|
|
|
|
|
|
my ($tag, $data) = split / /, $msg, 2; |
189
|
0
|
|
|
|
|
|
push @ctcp, [$tag, $data]; |
190
|
|
|
|
|
|
|
} |
191
|
|
|
|
|
|
|
|
192
|
0
|
|
|
|
|
|
$line =~ s/\001[^\001]*\001//g; |
193
|
|
|
|
|
|
|
|
194
|
0
|
|
|
|
|
|
return ($line, \@ctcp) |
195
|
|
|
|
|
|
|
} |
196
|
|
|
|
|
|
|
|
197
|
|
|
|
|
|
|
=item B |
198
|
|
|
|
|
|
|
|
199
|
|
|
|
|
|
|
This function encodes a ctcp message for the trailing part of a NOTICE |
200
|
|
|
|
|
|
|
or PRIVMSG. C<@msg> is an array of strings or array references. |
201
|
|
|
|
|
|
|
If an array reference occurs in the C<@msg> array it's first |
202
|
|
|
|
|
|
|
element will be interpreted as CTCP TAG (eg. one of PING, VERSION, .. whatever) |
203
|
|
|
|
|
|
|
the rest of the array ref will be appended to the tag and seperated by |
204
|
|
|
|
|
|
|
spaces. |
205
|
|
|
|
|
|
|
|
206
|
|
|
|
|
|
|
All parts of the message will be contatenated and lowlevel quoted. |
207
|
|
|
|
|
|
|
That means you can embed _any_ character from 0 to 255 in this message (thats |
208
|
|
|
|
|
|
|
what the lowlevel quoting allows). |
209
|
|
|
|
|
|
|
|
210
|
|
|
|
|
|
|
=cut |
211
|
|
|
|
|
|
|
|
212
|
|
|
|
|
|
|
sub encode_ctcp { |
213
|
0
|
|
|
0
|
1
|
|
my (@args) = @_; |
214
|
0
|
0
|
|
|
|
|
escape_lowlevel ( |
215
|
|
|
|
|
|
|
join "", map { |
216
|
0
|
|
|
|
|
|
ref $_ |
217
|
|
|
|
|
|
|
? "\001" . escape_ctcp (join " ", @$_) . "\001" |
218
|
|
|
|
|
|
|
: $_ |
219
|
|
|
|
|
|
|
} @args |
220
|
|
|
|
|
|
|
) |
221
|
|
|
|
|
|
|
} |
222
|
|
|
|
|
|
|
|
223
|
|
|
|
|
|
|
=item B |
224
|
|
|
|
|
|
|
|
225
|
|
|
|
|
|
|
This function will filter out any mIRC colors and (most) ansi escape sequences. |
226
|
|
|
|
|
|
|
Unfortunately the mIRC color coding will destroy improper colored numbers. So this |
227
|
|
|
|
|
|
|
function may destroy the message in some occasions a bit. |
228
|
|
|
|
|
|
|
|
229
|
|
|
|
|
|
|
=cut |
230
|
|
|
|
|
|
|
|
231
|
|
|
|
|
|
|
sub filter_colors($) { |
232
|
0
|
|
|
0
|
1
|
|
my ($line) = @_; |
233
|
0
|
|
|
|
|
|
$line =~ s/\x1B\[.*?[\x00-\x1F\x40-\x7E]//g; # see ECMA-48 + advice by urxvt author |
234
|
0
|
|
|
|
|
|
$line =~ s/\x03\d\d?(?:,\d\d?)?//g; # see http://www.mirc.co.uk/help/color.txt |
235
|
0
|
|
|
|
|
|
$line =~ s/[\x03\x16\x02\x1f\x0f]//g; # see some undefined place :-) |
236
|
0
|
|
|
|
|
|
$line |
237
|
|
|
|
|
|
|
} |
238
|
|
|
|
|
|
|
|
239
|
|
|
|
|
|
|
|
240
|
|
|
|
|
|
|
# implemented after the below CTCP spec, but |
241
|
|
|
|
|
|
|
# doesnt seem to be used by anyone... so it's untested. |
242
|
|
|
|
|
|
|
sub filter_ctcp_text_attr_bogus { |
243
|
0
|
|
|
0
|
0
|
|
my ($line, $cb) = @_; |
244
|
0
|
0
|
|
|
|
|
return unless $cb; |
245
|
0
|
0
|
|
|
|
|
$line =~ s/\006([BVUSI])/{warn "FIL\n"; my $c = $cb->($1); defined $c ? $c : "\006$1"}/ieg; |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
246
|
0
|
0
|
|
|
|
|
$line =~ s/\006CA((?:I[0-9A-F]|#[0-9A-F]{3}){2})/{my $c = $cb->($1); defined $c ? $c : "\006CA$1"}/ieg; |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
247
|
0
|
0
|
|
|
|
|
$line =~ s/\006C([FB])(I[0-9A-F]|#[0-9A-F]{3})/{my $c = $cb->($1, $2); defined $c ? $c : "\006C$1$2"}/ieg; |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
248
|
0
|
0
|
|
|
|
|
$line =~ s/\006CX([AFB])/{my $c = $cb->($1); defined $c ? $c : "\006CX$1"}/ieg; |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
249
|
0
|
|
|
|
|
|
return $line; |
250
|
|
|
|
|
|
|
} |
251
|
|
|
|
|
|
|
|
252
|
|
|
|
|
|
|
=item B |
253
|
|
|
|
|
|
|
|
254
|
|
|
|
|
|
|
This function splits an IRC user prefix as described by RFC 2817 |
255
|
|
|
|
|
|
|
into the three parts: nickname, user and host. Which will be |
256
|
|
|
|
|
|
|
returned as a list with that order. |
257
|
|
|
|
|
|
|
|
258
|
|
|
|
|
|
|
C<$prefix> can also be a hash like it is returned by C. |
259
|
|
|
|
|
|
|
|
260
|
|
|
|
|
|
|
=cut |
261
|
|
|
|
|
|
|
|
262
|
|
|
|
|
|
|
sub split_prefix { |
263
|
0
|
|
|
0
|
1
|
|
my ($prfx) = @_; |
264
|
|
|
|
|
|
|
|
265
|
0
|
0
|
|
|
|
|
if (ref ($prfx) eq 'HASH') { |
266
|
0
|
|
|
|
|
|
$prfx = $prfx->{prefix}; |
267
|
|
|
|
|
|
|
} |
268
|
|
|
|
|
|
|
|
269
|
|
|
|
|
|
|
# this splitting does indeed use the servername as nickname, but there |
270
|
|
|
|
|
|
|
# is no way for a client to distinguish. |
271
|
0
|
|
|
|
|
|
$prfx =~ m/^\s*([^!]*)(?:!([^@]*))?(?:@(.*?))?\s*$/; |
272
|
0
|
|
|
|
|
|
return ($1, $2, $3); |
273
|
|
|
|
|
|
|
} |
274
|
|
|
|
|
|
|
|
275
|
|
|
|
|
|
|
=item B |
276
|
|
|
|
|
|
|
|
277
|
|
|
|
|
|
|
A shortcut to extract the nickname from the C<$prefix>. |
278
|
|
|
|
|
|
|
|
279
|
|
|
|
|
|
|
C<$prefix> can also be a hash like it is returned by C. |
280
|
|
|
|
|
|
|
|
281
|
|
|
|
|
|
|
=cut |
282
|
|
|
|
|
|
|
|
283
|
|
|
|
|
|
|
sub prefix_nick { |
284
|
0
|
|
|
0
|
1
|
|
my ($prfx) = @_; |
285
|
0
|
|
|
|
|
|
return (split_prefix ($prfx))[0]; |
286
|
|
|
|
|
|
|
} |
287
|
|
|
|
|
|
|
|
288
|
|
|
|
|
|
|
=item B |
289
|
|
|
|
|
|
|
|
290
|
|
|
|
|
|
|
A shortcut to extract the username from the C<$prefix>. |
291
|
|
|
|
|
|
|
|
292
|
|
|
|
|
|
|
C<$prefix> can also be a hash like it is returned by C. |
293
|
|
|
|
|
|
|
|
294
|
|
|
|
|
|
|
=cut |
295
|
|
|
|
|
|
|
|
296
|
|
|
|
|
|
|
sub prefix_user { |
297
|
0
|
|
|
0
|
1
|
|
my ($prfx) = @_; |
298
|
0
|
|
|
|
|
|
return (split_prefix ($prfx))[1]; |
299
|
|
|
|
|
|
|
} |
300
|
|
|
|
|
|
|
|
301
|
|
|
|
|
|
|
=item B |
302
|
|
|
|
|
|
|
|
303
|
|
|
|
|
|
|
A shortcut to extract the hostname from the C<$prefix>. |
304
|
|
|
|
|
|
|
|
305
|
|
|
|
|
|
|
C<$prefix> can also be a hash like it is returned by C. |
306
|
|
|
|
|
|
|
|
307
|
|
|
|
|
|
|
=cut |
308
|
|
|
|
|
|
|
|
309
|
|
|
|
|
|
|
sub prefix_host { |
310
|
0
|
|
|
0
|
1
|
|
my ($prfx) = @_; |
311
|
0
|
|
|
|
|
|
return (split_prefix ($prfx))[2]; |
312
|
|
|
|
|
|
|
} |
313
|
|
|
|
|
|
|
|
314
|
|
|
|
|
|
|
|
315
|
|
|
|
|
|
|
=item B |
316
|
|
|
|
|
|
|
|
317
|
|
|
|
|
|
|
This function is a interface to the internal mapping or numeric |
318
|
|
|
|
|
|
|
replies to the reply name in RFC 2812 (which you may also consult). |
319
|
|
|
|
|
|
|
|
320
|
|
|
|
|
|
|
C<$code> is returned if no name for C<$code> exists |
321
|
|
|
|
|
|
|
(as some server may extended the protocol). |
322
|
|
|
|
|
|
|
|
323
|
|
|
|
|
|
|
=back |
324
|
|
|
|
|
|
|
|
325
|
|
|
|
|
|
|
=cut |
326
|
|
|
|
|
|
|
|
327
|
|
|
|
|
|
|
our %RFC_NUMCODE_MAP = ( |
328
|
|
|
|
|
|
|
'001' => 'RPL_WELCOME', |
329
|
|
|
|
|
|
|
'002' => 'RPL_YOURHOST', |
330
|
|
|
|
|
|
|
'003' => 'RPL_CREATED', |
331
|
|
|
|
|
|
|
'004' => 'RPL_MYINFO', |
332
|
|
|
|
|
|
|
'005' => 'RPL_BOUNCE', |
333
|
|
|
|
|
|
|
'200' => 'RPL_TRACELINK', |
334
|
|
|
|
|
|
|
'201' => 'RPL_TRACECONNECTING', |
335
|
|
|
|
|
|
|
'202' => 'RPL_TRACEHANDSHAKE', |
336
|
|
|
|
|
|
|
'203' => 'RPL_TRACEUNKNOWN', |
337
|
|
|
|
|
|
|
'204' => 'RPL_TRACEOPERATOR', |
338
|
|
|
|
|
|
|
'205' => 'RPL_TRACEUSER', |
339
|
|
|
|
|
|
|
'206' => 'RPL_TRACESERVER', |
340
|
|
|
|
|
|
|
'207' => 'RPL_TRACESERVICE', |
341
|
|
|
|
|
|
|
'208' => 'RPL_TRACENEWTYPE', |
342
|
|
|
|
|
|
|
'209' => 'RPL_TRACECLASS', |
343
|
|
|
|
|
|
|
'210' => 'RPL_TRACERECONNECT', |
344
|
|
|
|
|
|
|
'211' => 'RPL_STATSLINKINFO', |
345
|
|
|
|
|
|
|
'212' => 'RPL_STATSCOMMANDS', |
346
|
|
|
|
|
|
|
'219' => 'RPL_ENDOFSTATS', |
347
|
|
|
|
|
|
|
'221' => 'RPL_UMODEIS', |
348
|
|
|
|
|
|
|
'233' => 'RPL_SERVICE', |
349
|
|
|
|
|
|
|
'234' => 'RPL_SERVLIST', |
350
|
|
|
|
|
|
|
'235' => 'RPL_SERVLISTEND', |
351
|
|
|
|
|
|
|
'242' => 'RPL_STATSUPTIME', |
352
|
|
|
|
|
|
|
'243' => 'RPL_STATSOLINE', |
353
|
|
|
|
|
|
|
'250' => 'RPL_STATSDLINE', |
354
|
|
|
|
|
|
|
'251' => 'RPL_LUSERCLIENT', |
355
|
|
|
|
|
|
|
'252' => 'RPL_LUSEROP', |
356
|
|
|
|
|
|
|
'253' => 'RPL_LUSERUNKNOWN', |
357
|
|
|
|
|
|
|
'254' => 'RPL_LUSERCHANNELS', |
358
|
|
|
|
|
|
|
'255' => 'RPL_LUSERME', |
359
|
|
|
|
|
|
|
'256' => 'RPL_ADMINME', |
360
|
|
|
|
|
|
|
'257' => 'RPL_ADMINLOC1', |
361
|
|
|
|
|
|
|
'258' => 'RPL_ADMINLOC2', |
362
|
|
|
|
|
|
|
'259' => 'RPL_ADMINEMAIL', |
363
|
|
|
|
|
|
|
'261' => 'RPL_TRACELOG', |
364
|
|
|
|
|
|
|
'262' => 'RPL_TRACEEND', |
365
|
|
|
|
|
|
|
'263' => 'RPL_TRYAGAIN', |
366
|
|
|
|
|
|
|
'301' => 'RPL_AWAY', |
367
|
|
|
|
|
|
|
'302' => 'RPL_USERHOST', |
368
|
|
|
|
|
|
|
'303' => 'RPL_ISON', |
369
|
|
|
|
|
|
|
'305' => 'RPL_UNAWAY', |
370
|
|
|
|
|
|
|
'306' => 'RPL_NOWAWAY', |
371
|
|
|
|
|
|
|
'311' => 'RPL_WHOISUSER', |
372
|
|
|
|
|
|
|
'312' => 'RPL_WHOISSERVER', |
373
|
|
|
|
|
|
|
'313' => 'RPL_WHOISOPERATOR', |
374
|
|
|
|
|
|
|
'314' => 'RPL_WHOWASUSER', |
375
|
|
|
|
|
|
|
'315' => 'RPL_ENDOFWHO', |
376
|
|
|
|
|
|
|
'317' => 'RPL_WHOISIDLE', |
377
|
|
|
|
|
|
|
'318' => 'RPL_ENDOFWHOIS', |
378
|
|
|
|
|
|
|
'319' => 'RPL_WHOISCHANNELS', |
379
|
|
|
|
|
|
|
'321' => 'RPL_LISTSTART', |
380
|
|
|
|
|
|
|
'322' => 'RPL_LIST', |
381
|
|
|
|
|
|
|
'323' => 'RPL_LISTEND', |
382
|
|
|
|
|
|
|
'324' => 'RPL_CHANNELMODEIS', |
383
|
|
|
|
|
|
|
'325' => 'RPL_UNIQOPIS', |
384
|
|
|
|
|
|
|
'331' => 'RPL_NOTOPIC', |
385
|
|
|
|
|
|
|
'332' => 'RPL_TOPIC', |
386
|
|
|
|
|
|
|
'341' => 'RPL_INVITING', |
387
|
|
|
|
|
|
|
'342' => 'RPL_SUMMONING', |
388
|
|
|
|
|
|
|
'346' => 'RPL_INVITELIST', |
389
|
|
|
|
|
|
|
'347' => 'RPL_ENDOFINVITELIST', |
390
|
|
|
|
|
|
|
'348' => 'RPL_EXCEPTLIST', |
391
|
|
|
|
|
|
|
'349' => 'RPL_ENDOFEXCEPTLIST', |
392
|
|
|
|
|
|
|
'351' => 'RPL_VERSION', |
393
|
|
|
|
|
|
|
'352' => 'RPL_WHOREPLY', |
394
|
|
|
|
|
|
|
'353' => 'RPL_NAMREPLY', |
395
|
|
|
|
|
|
|
'364' => 'RPL_LINKS', |
396
|
|
|
|
|
|
|
'365' => 'RPL_ENDOFLINKS', |
397
|
|
|
|
|
|
|
'366' => 'RPL_ENDOFNAMES', |
398
|
|
|
|
|
|
|
'367' => 'RPL_BANLIST', |
399
|
|
|
|
|
|
|
'368' => 'RPL_ENDOFBANLIST', |
400
|
|
|
|
|
|
|
'369' => 'RPL_ENDOFWHOWAS', |
401
|
|
|
|
|
|
|
'371' => 'RPL_INFO', |
402
|
|
|
|
|
|
|
'372' => 'RPL_MOTD', |
403
|
|
|
|
|
|
|
'374' => 'RPL_ENDOFINFO', |
404
|
|
|
|
|
|
|
'375' => 'RPL_MOTDSTART', |
405
|
|
|
|
|
|
|
'376' => 'RPL_ENDOFMOTD', |
406
|
|
|
|
|
|
|
'381' => 'RPL_YOUREOPER', |
407
|
|
|
|
|
|
|
'382' => 'RPL_REHASHING', |
408
|
|
|
|
|
|
|
'383' => 'RPL_YOURESERVICE', |
409
|
|
|
|
|
|
|
'384' => 'RPL_MYPORTIS', |
410
|
|
|
|
|
|
|
'391' => 'RPL_TIME', |
411
|
|
|
|
|
|
|
'392' => 'RPL_USERSSTART', |
412
|
|
|
|
|
|
|
'393' => 'RPL_USERS', |
413
|
|
|
|
|
|
|
'394' => 'RPL_ENDOFUSERS', |
414
|
|
|
|
|
|
|
'395' => 'RPL_NOUSERS', |
415
|
|
|
|
|
|
|
'401' => 'ERR_NOSUCHNICK', |
416
|
|
|
|
|
|
|
'402' => 'ERR_NOSUCHSERVER', |
417
|
|
|
|
|
|
|
'403' => 'ERR_NOSUCHCHANNEL', |
418
|
|
|
|
|
|
|
'404' => 'ERR_CANNOTSENDTOCHAN', |
419
|
|
|
|
|
|
|
'405' => 'ERR_TOOMANYCHANNELS', |
420
|
|
|
|
|
|
|
'406' => 'ERR_WASNOSUCHNICK', |
421
|
|
|
|
|
|
|
'407' => 'ERR_TOOMANYTARGETS', |
422
|
|
|
|
|
|
|
'408' => 'ERR_NOSUCHSERVICE', |
423
|
|
|
|
|
|
|
'409' => 'ERR_NOORIGIN', |
424
|
|
|
|
|
|
|
'411' => 'ERR_NORECIPIENT', |
425
|
|
|
|
|
|
|
'412' => 'ERR_NOTEXTTOSEND', |
426
|
|
|
|
|
|
|
'413' => 'ERR_NOTOPLEVEL', |
427
|
|
|
|
|
|
|
'414' => 'ERR_WILDTOPLEVEL', |
428
|
|
|
|
|
|
|
'415' => 'ERR_BADMASK', |
429
|
|
|
|
|
|
|
'421' => 'ERR_UNKNOWNCOMMAND', |
430
|
|
|
|
|
|
|
'422' => 'ERR_NOMOTD', |
431
|
|
|
|
|
|
|
'423' => 'ERR_NOADMININFO', |
432
|
|
|
|
|
|
|
'424' => 'ERR_FILEERROR', |
433
|
|
|
|
|
|
|
'431' => 'ERR_NONICKNAMEGIVEN', |
434
|
|
|
|
|
|
|
'432' => 'ERR_ERRONEUSNICKNAME', |
435
|
|
|
|
|
|
|
'433' => 'ERR_NICKNAMEINUSE', |
436
|
|
|
|
|
|
|
'436' => 'ERR_NICKCOLLISION', |
437
|
|
|
|
|
|
|
'437' => 'ERR_UNAVAILRESOURCE', |
438
|
|
|
|
|
|
|
'441' => 'ERR_USERNOTINCHANNEL', |
439
|
|
|
|
|
|
|
'442' => 'ERR_NOTONCHANNEL', |
440
|
|
|
|
|
|
|
'443' => 'ERR_USERONCHANNEL', |
441
|
|
|
|
|
|
|
'444' => 'ERR_NOLOGIN', |
442
|
|
|
|
|
|
|
'445' => 'ERR_SUMMONDISABLED', |
443
|
|
|
|
|
|
|
'446' => 'ERR_USERSDISABLED', |
444
|
|
|
|
|
|
|
'451' => 'ERR_NOTREGISTERED', |
445
|
|
|
|
|
|
|
'461' => 'ERR_NEEDMOREPARAMS', |
446
|
|
|
|
|
|
|
'462' => 'ERR_ALREADYREGISTRED', |
447
|
|
|
|
|
|
|
'463' => 'ERR_NOPERMFORHOST', |
448
|
|
|
|
|
|
|
'464' => 'ERR_PASSWDMISMATCH', |
449
|
|
|
|
|
|
|
'465' => 'ERR_YOUREBANNEDCREEP', |
450
|
|
|
|
|
|
|
'466' => 'ERR_YOUWILLBEBANNED', |
451
|
|
|
|
|
|
|
'467' => 'ERR_KEYSET', |
452
|
|
|
|
|
|
|
'471' => 'ERR_CHANNELISFULL', |
453
|
|
|
|
|
|
|
'472' => 'ERR_UNKNOWNMODE', |
454
|
|
|
|
|
|
|
'473' => 'ERR_INVITEONLYCHAN', |
455
|
|
|
|
|
|
|
'474' => 'ERR_BANNEDFROMCHAN', |
456
|
|
|
|
|
|
|
'475' => 'ERR_BADCHANNELKEY', |
457
|
|
|
|
|
|
|
'476' => 'ERR_BADCHANMASK', |
458
|
|
|
|
|
|
|
'477' => 'ERR_NOCHANMODES', |
459
|
|
|
|
|
|
|
'478' => 'ERR_BANLISTFULL', |
460
|
|
|
|
|
|
|
'481' => 'ERR_NOPRIVILEGES', |
461
|
|
|
|
|
|
|
'482' => 'ERR_CHANOPRIVSNEEDED', |
462
|
|
|
|
|
|
|
'483' => 'ERR_CANTKILLSERVER', |
463
|
|
|
|
|
|
|
'484' => 'ERR_RESTRICTED', |
464
|
|
|
|
|
|
|
'485' => 'ERR_UNIQOPPRIVSNEEDED', |
465
|
|
|
|
|
|
|
'491' => 'ERR_NOOPERHOST', |
466
|
|
|
|
|
|
|
'492' => 'ERR_NOSERVICEHOST', |
467
|
|
|
|
|
|
|
'501' => 'ERR_UMODEUNKNOWNFLAG', |
468
|
|
|
|
|
|
|
'502' => 'ERR_USERSDONTMATCH', |
469
|
|
|
|
|
|
|
); |
470
|
|
|
|
|
|
|
|
471
|
|
|
|
|
|
|
sub rfc_code_to_name { |
472
|
0
|
|
|
0
|
1
|
|
my ($code) = @_; |
473
|
0
|
|
0
|
|
|
|
return $RFC_NUMCODE_MAP{$code} || $code; |
474
|
|
|
|
|
|
|
} |
475
|
|
|
|
|
|
|
|
476
|
|
|
|
|
|
|
=head1 AUTHOR |
477
|
|
|
|
|
|
|
|
478
|
|
|
|
|
|
|
Robin Redeker, C<< >> |
479
|
|
|
|
|
|
|
|
480
|
|
|
|
|
|
|
=head1 SEE ALSO |
481
|
|
|
|
|
|
|
|
482
|
|
|
|
|
|
|
Internet Relay Chat Client To Client Protocol from February 2, 1997 |
483
|
|
|
|
|
|
|
http://www.invlogic.com/irc/ctcp.html |
484
|
|
|
|
|
|
|
|
485
|
|
|
|
|
|
|
RFC 2812 - Internet Relay Chat: Client Protocol |
486
|
|
|
|
|
|
|
|
487
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
488
|
|
|
|
|
|
|
|
489
|
|
|
|
|
|
|
Copyright 2006 Robin Redeker, all rights reserved. |
490
|
|
|
|
|
|
|
|
491
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
492
|
|
|
|
|
|
|
under the same terms as Perl itself. |
493
|
|
|
|
|
|
|
|
494
|
|
|
|
|
|
|
=cut |
495
|
|
|
|
|
|
|
|
496
|
|
|
|
|
|
|
1; |