summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2009-06-29 17:40:03 -0500
committerJesse Luehrs <doy@tozt.net>2009-06-29 17:40:03 -0500
commitcd3fc8df3e7fb43f27d0c5c190dd9ce497cfdb25 (patch)
tree529da9d4a15a0d625ce184172ab629686d8f0a25
parentc8c8922e86d0371cb2ce501a635c5d8bfd3bc240 (diff)
downloadio-socket-telnet-halfduplex-cd3fc8df3e7fb43f27d0c5c190dd9ce497cfdb25.tar.gz
io-socket-telnet-halfduplex-cd3fc8df3e7fb43f27d0c5c190dd9ce497cfdb25.zip
pod boilerplate
-rw-r--r--lib/IO/Socket/Telnet/HalfDuplex.pm82
1 files changed, 82 insertions, 0 deletions
diff --git a/lib/IO/Socket/Telnet/HalfDuplex.pm b/lib/IO/Socket/Telnet/HalfDuplex.pm
index 4df4668..4197c68 100644
--- a/lib/IO/Socket/Telnet/HalfDuplex.pm
+++ b/lib/IO/Socket/Telnet/HalfDuplex.pm
@@ -3,6 +3,24 @@ use warnings;
package IO::Socket::Telnet::HalfDuplex;
use base 'IO::Socket::Telnet';
+=head1 NAME
+
+
+=head1 SYNOPSIS
+
+
+=head1 DESCRIPTION
+
+
+=cut
+
+=head1 CONSTRUCTOR
+
+=head2 new(PARAMHASH)
+
+
+=cut
+
sub new {
my $class = shift;
my %args = @_;
@@ -19,6 +37,15 @@ sub telnet_simple_callback {
${*$self}{halfduplex_simple_cb};
}
+=head1 METHODS
+
+=cut
+
+=head2 read()
+
+
+=cut
+
sub read {
my $self = shift;
my $buffer;
@@ -61,4 +88,59 @@ sub _telnet_negotiation {
return $self->$external_callback($option);
}
+=head1 BUGS
+
+No known bugs.
+
+Please report any bugs through RT: email
+C<bug-io-socket-telnet-halfduplex at rt.cpan.org>, or browse to
+L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=IO-Socket-Telnet-HalfDuplex>.
+
+=head1 TODO
+
+
+=head1 SEE ALSO
+
+
+=head1 SUPPORT
+
+You can find this documentation for this module with the perldoc command.
+
+ perldoc IO::Socket::Telnet::HalfDuplex
+
+You can also look for information at:
+
+=over 4
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/IO-Socket-Telnet-HalfDuplex>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/IO-Socket-Telnet-HalfDuplex>
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=IO-Socket-Telnet-HalfDuplex>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/IO-Socket-Telnet-HalfDuplex>
+
+=back
+
+=head1 AUTHOR
+
+ Jesse Luehrs <doy at tozt dot net>
+
+=head1 COPYRIGHT AND LICENSE
+
+This software is copyright (c) 2009 by Jesse Luehrs.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as perl itself.
+
+=cut
+
1;