/* MODULE INET_COMMON_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 SNMP declarations 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_COMMON_DEF_H #define INET_COMMON_DEF_H #define SNMP_BUFFER_SIZE 460 #define SNMP_MAX_NAME_SIZE 252 #define SNMP_MAX_ENTITY_LEVELS 6 #define SNMP_MAX_ADDR_STR_SIZE 15 #define SNMP_EXC_VALUE_SIZE 512 #define SNMP_EXC_MAX_ARGS 3 #define SNMP_MAX_CACHE_ENTRY 50 typedef unsigned char BOOLEAN; #define CMA_ALERTED 9 #ifndef TRUE #define TRUE 1 #endif #ifndef FALSE #define FALSE 0 #endif #ifndef NULL #define NULL 0 #endif struct IPAddress { unsigned char addr_bytes[ 4 ]; unsigned char addr_string[ SNMP_MAX_ADDR_STR_SIZE + 1 ]; unsigned int addr_length; }; #endif