This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
README
POE::Component::Client::NNTP ============================ 1). Background POE::Component::Client::NNTP is a POE (Perl Object Environment) component which provides a convenient way for POE applications to perform non-blocking Network News Transport Protocol ( NNTP ) requests and receive applicable responses, to /from an NNTP server. The component assumes a working knowledge of RFC 977 and, optionally, RFC 2980. <http://www.faqs.org/rfcs/rfc977.html> <http://www.faqs.org/rfcs/rfc2980.html> 2). Implementation The component is spawned and christened with a kernel alias. You 'register' with the component to receive events. For server responses which generate additional text such as 'help', 'article', etc. the component waits until it has received all server output before returning the applicable event with the text appended. Eg. You send:- $kernel->post ( 'NNTP-Client' => 'article' => 51 ); The component returns a 'nntp_220' event:- sub nntp_220 { my ($text,$article) = @_[ARG0,ARG1]; # Print the article to screen foreach ( @{ $article } ) { print "$_"; } # Done } 3). DISCLAIMER This module is provided "as is". No Income Tax. No V.A.T. No money back. No guarantee.








