Help for this page
#!/usr/bin/perl -w ... print "The client should see this STDOUT message.\n"; print $client "The client should see this SOCKET message.\n"; close($client);
$ nc --ssl localhost 12345 The client should see this STDOUT message. The client should see this SOCKET message.