VSI submission: redirect terminal input through socket
authorRichard Levitte <levitte@openssl.org>
Wed, 3 Aug 2016 19:16:43 +0000 (21:16 +0200)
committerRichard Levitte <levitte@openssl.org>
Thu, 15 Sep 2016 21:24:06 +0000 (23:24 +0200)
commit0d3b65832c6fa94c1d1cfa2f99335f323e3227c1
treee3a7995f3ff12d8f0c8f300439a31d77eedcf00e
parent6f0ac0e2f27d9240516edb9a23b7863e7ad02898
VSI submission: redirect terminal input through socket

This is needed, because on VMS, select() can only be used on sockets.  being
able to use select() on all kinds of file descriptors is unique to Unix.

So, the solution for VMS is to create a layer that translates input from
standard input to socket communication.

Reviewed-by: Andy Polyakov <appro@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
apps/s_client.c
apps/s_server.c
apps/vms_term_sock.c [new file with mode: 0644]
apps/vms_term_sock.h [new file with mode: 0644]