/* MODULE INET_IO_DEF.H Copyright (c) Digital Equipment Corporation, 1990 All Rights Reserved. Unpublished rights reserved under the copyright laws of the United States. The software contained on this media is proprietary to and embodies the confidential technology of Digital Equipment Corporation. Possession, use, duplication or dissemination of the software and media is authorized only pursuant to a valid written license from Digital Equipment Corporation. RESTRICTED RIGHTS LEGEND Use, duplication, or disclosure by the U.S. Government is subject to restrictions as set forth in Subparagraph (c)(1)(ii) of DFARS 252.227-7013, or in FAR 52.227-19, as applicable. FACILITY: MCC -- Management Control Center ABSTRACT: CONTAINS mcc_tcpip header functions ENVIRONMENT: VAX/VMS. Using the "C" programming language. No compilation assumptions. No execution assumptions. AUTHOR: Ramasamy Jesuraj CREATION DATE: 25-SEP- 89 MODIFICATION HISTORY: Version Date Reviser Reason ------- ---- ------- ------ v1.0 25-SEPT-1989 Ramasamy Jesuraj Creation See CMS history for details... *************************************************************/ #ifndef INET_IO_DEF_H #define INET_IO_DEF_H /* From mcc_tcpip_io */ typedef MCC_T_UNSBYTE mcc_tcpip_IO_AddrType[ 4 ]; typedef MCC_T_Unsigned16 mcc_tcpip_IO_PortType; typedef enum classes { UDP_IP, ICMP_IP } mcc_tcpip_IO_ClassType; struct mcc_tcpip_IO_int_ctx { MCC_T_Unsigned32 socket; struct sockaddr_in local_sockaddr; struct sockaddr_in remote_sockaddr; }; #endif