1POE::Filter::Ident(3) User Contributed Perl DocumentationPOE::Filter::Ident(3)
2
3
4

NAME

6       POE::Filter::Ident -- A POE-based parser for the Ident protocol.
7

SYNOPSIS

9           my $filter = POE::Filter::Ident->new();
10           my @events = @{$filter->get( [ @lines ] )};
11

DESCRIPTION

13       POE::Filter::Ident takes lines of raw Ident input and turns them into
14       weird little data structures, suitable for feeding to
15       POE::Component::Client::Ident::Agent. They look like this:
16
17           { name => 'event name', args => [ some info about the event ] }
18

CONSTRUCTOR

20       "new"
21           Creates a new POE::Filter::Ident object. Takes no arguments.
22

METHODS

24       "get"
25           Takes an array reference full of lines of raw Ident text. Returns
26           an array reference of processed, pasteurized events.
27
28       "put"
29           There is no "put" method. That would be kinda silly for this
30           filter, don't you think?
31
32       "debug"
33           Pass true/false value to enable/disable debugging information.
34

AUTHOR

36       Dennis "fimmtiu" Taylor, <dennis@funkplanet.com>.
37
38       Hacked for Ident by Chris "BinGOs" Williams <chris@Bingosnet.co.uk>
39
40       Code for parsing the the Ident messages from Net::Ident by Jan-Pieter
41       Cornet.
42

LICENSE

44       Copyright © Chris Williams, Dennis Taylor and Jan-Pieter Cornet.
45
46       This module may be used, modified, and distributed under the same terms
47       as Perl itself. Please see the license that came with your Perl
48       distribution for details.
49

SEE ALSO

51       Net::Ident
52
53
54
55perl v5.32.0                      2020-07-28             POE::Filter::Ident(3)
Impressum