Sascha2018 has asked for the wisdom of the Perl Monks concerning the following question:
Hello.
I have a IO::Socket::SSL programmed Perl Script.
If i connect with a client:
.. the Server accepts the handshake and handles the messages. But.. if i want to open my website https://host:port/?action=show over HTTPS the server does not get a GET /? Request. Nothing is shown and i get a This site can’t be reached and ERR_ADDRESS_UNREACHABLE in the Browser. Why ? Perhaps you can help me in german language. If not, we can try to communicate in English language. Regardsmy $client = IO::Socket::INET->new(PeerAddr=>'host',PeerPort=>'port',P +roto=>'tcp'); IO::Socket::SSL->start_SSL(options..);
Back to
Seekers of Perl Wisdom