1POE::Filter::IRC(3) User Contributed Perl Documentation POE::Filter::IRC(3)
2
3
4
6 POE::Filter::IRC -- A POE-based parser for the IRC protocol
7
9 my $filter = POE::Filter::IRC->new();
10 my @events = @{ $filter->get( [ @lines ] ) };
11
13 POE::Filter::IRC takes lines of raw IRC input and turns them into weird
14 little data structures, suitable for feeding to POE::Component::IRC.
15 They look like this:
16
17 { name => 'event name', args => [ some info about the event ] }
18
19 This module was long deprecated in POE::Component::IRC. It now uses
20 the same mechanism that that uses to parse IRC text.
21
23 "new"
24 Returns a new POE::Filter::Stackable object containing a
25 POE::Filter::IRCD object and a POE::Filter::IRC::Compat object. This
26 does the same job that POE::Filter::IRC used to do.
27
29 See the documentation for POE::Filter::IRCD and
30 POE::Filter::IRC::Compat.
31
33 Dennis "fimmtiu" Taylor
34
35 Refactoring by Chris "BinGOs" Williams <chris@bingosnet.co.uk>
36
38 The documentation for POE and POE::Component::IRC.
39
40 POE::Filter::Stackable
41
42 POE::Filter::IRCD
43
44 POE::Filter::IRC::Compat
45
46
47
48perl v5.38.0 2023-07-21 POE::Filter::IRC(3)