NAME
IO::Socket::CLI - CLI for IO::Socket::INET6 and IO::Socket::SSL
VERSION
version 0.041
SYNOPSIS
use IO::Socket::CLI;
our @ISA = ("IO::Socket::CLI");
DESCRIPTION
IO::Socket::CLI provides a command-line interface to IO::Socket::INET6 and IO::Socket::SSL.
METHODS
- new(...)
-
Creates a new IO::Socket::CLI object, returning its reference. Has the following options:
- HOST
-
Hostname or IP address. Default is
'127.0.0.1'. - PORT
-
Port of the service. Default is
'143'. - SSL
-
Boolean value for if an SSL connection. Default is
0. - BYE
-
String server sends when it hangs up. Default is
qr'^\* BYE( |\r?$)'. - TIMEOUT
-
Timeout in seconds for reading from the socket before returning an empty list. Default is
5. - DELAY
-
Delay in milliseconds between read attempts if nothing is returned. Default is
10. - PRINT_RESPONSE
-
Boolean value for if to automatically print the server response on "read()". Default is
1. - PREPEND
-
Boolean value for if to pretend client commands and server responses with
"C: "and"S: ", respectively. Default is1. - DEBUG
-
Boolean value for if to give verbose debugging info. Default is
0.
- read()
-
Reads the response from the server, returning it as a list. Tries every
DELAYmilliseconds untilTIMEOUTseconds. Optionally prints the response toSTDOUTifPRINT_RESPONSE. - response()
-
Returns the last stored response from the server as a list.
- print_resp()
-
Prints each line of server response to
STDOUT, optionally prepending with"S: "ifPREPEND. - is_open()
-
Returns if the server hung up according to the last server response.
- send($command)
-
Sends
$commandto the server. Optionally echoes$commandifPRINT_RESPONSE. - prompt()
-
Reads command from
STDINand sends it to the server. - command()
-
Returns last command sent.
- print_response(), print_response($boolean)
-
Optionally turns
PRINT_RESPONSEon/off. Returns value. - prepend(), prepend($boolean)
-
Optionally turns
PREPENDon/off. Returns value. - timeout(), timeout($seconds)
-
Optionally sets
TIMEOUTin seconds. Must be non-negative. Returns value. - delay(), delay($milliseconds)
-
Optionally sets
DELAYin milliseconds. Must be positive. Returns value. - bye(), bye($bye)
-
Optionally sets
BYE. Must be a regexp-like quote:qr/STRING/. Returns value. - debug(), debug($boolean)
-
Optionally turns debugging info/verbosity on/off. Returns value.
- socket()
-
Returns the underlying socket.
- errstr()
-
Returns
errstr()from the socket. Only for SSL - returnsundefotherwise. - close()
-
Closes the socket. Returns true on success. This method needs to be overridden for SSL connections.
BUGS
Does not verify SSL connections. Has not been tried with STARTTLS.
COPYRIGHT AND LICENSE
Copyright (C) 2012-2014 by Ashley Willis <ashley+perl@gitable.org>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.12.4 or, at your option, any later version of Perl 5 you may have available.