Path: blob/main/crypto/openssl/apps/include/vms_term_sock.h
34907 views
/*1* Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.2* Copyright 2016 VMS Software, Inc. All Rights Reserved.3*4* Licensed under the Apache License 2.0 (the "License"). You may not use5* this file except in compliance with the License. You can obtain a copy6* in the file LICENSE in the source distribution or at7* https://www.openssl.org/source/license.html8*/910#ifndef OSSL_APPS_VMS_TERM_SOCK_H11# define OSSL_APPS_VMS_TERM_SOCK_H1213/*14** Terminal Socket Function Codes15*/16# define TERM_SOCK_CREATE 117# define TERM_SOCK_DELETE 21819/*20** Terminal Socket Status Codes21*/22# define TERM_SOCK_FAILURE 023# define TERM_SOCK_SUCCESS 12425/*26** Terminal Socket Prototype27*/28int TerminalSocket (int FunctionCode, int *ReturnSocket);2930#endif313233