package Net::Proxy::Connector::dummy; use strict; use warnings; use Net::Proxy::Connector; our @ISA = qw( Net::Proxy::Connector ); # IN sub listen { } sub accept_from { } # OUT sub connect { } # READ sub read_from { return '' } # WRITE sub write_to { } 1; __END__ =head1 NAME Net::Proxy::Connector::dummy - Dummy Net::Proxy connector =head1 DESCRIPTION C is a C that does I. It doesn't listen for incoming connections and does connect to other hosts. Future connectors may have their C method also handle the connection to a remote host. In this case, C may be used as an 'out' connector. You could also use the source code of this module as a template for writing new C classes. =head1 CONNECTOR OPTIONS None. =head1 AUTHOR Philippe 'BooK' Bruhat, C<< >>. =head1 COPYRIGHT Copyright 2006 Philippe 'BooK' Bruhat, All Rights Reserved. =head1 LICENSE This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut