16 lines
406 B
Perl
Executable File
16 lines
406 B
Perl
Executable File
#!/usr/bin/perl
|
|
# sslcat.pl - Send a message and receive a reply from server.
|
|
#
|
|
# Copyright (c) 1996-2001 Sampo Kellomaki <sampo@iki.fi>, All Rights Reserved.
|
|
# Date: 7.6.1996
|
|
|
|
$host = 'localhost' unless $host = shift;
|
|
$port = 443 unless $port = shift;
|
|
$msg = "get \n\r\n" unless $msg = shift;
|
|
|
|
print "$host $port $msg\n";
|
|
use Net::SSLeay qw(sslcat);
|
|
print sslcat($host, $port, $msg);
|
|
|
|
__END__
|