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:23:06 +0000 (23:23 +0200)
commit1015609ac0eecb2914b15e8579917625ca43219d
tree7b5ec464b86098f7d5dd2e0c1d69b567177a96d4
parentd69247598991c61dfb68d4fe3b08346b02644812
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: 0755]
apps/vms_term_sock.h [new file with mode: 0755]