From feb73d85b3dbc111aab9bd8e882da92ddd2f0330 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Sat, 12 Aug 1995 00:28:58 +0000 Subject: [PATCH] bumbed CA minor version to 5 --- src/ca/iocmsg.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/ca/iocmsg.h b/src/ca/iocmsg.h index 1a47f9c59..fd5a94201 100644 --- a/src/ca/iocmsg.h +++ b/src/ca/iocmsg.h @@ -31,23 +31,26 @@ HDRVERSIONID(iocmsgh, "@(#) $Id$ CA version 4.4") /* TCP/UDP port number (bumped each protocol change) */ #define CA_PROTOCOL_VERSION 4 -#define CA_MINOR_VERSION 4 +#define CA_MINOR_VERSION 5 #define CA_UKN_MINOR_VERSION 0 /* unknown minor version */ #if CA_PROTOCOL_VERSION == 4 #define CA_V41(MAJOR,MINOR) ((MINOR)>=1) #define CA_V42(MAJOR,MINOR) ((MINOR)>=2) #define CA_V43(MAJOR,MINOR) ((MINOR)>=3) #define CA_V44(MAJOR,MINOR) ((MINOR)>=4) +#define CA_V45(MAJOR,MINOR) ((MINOR)>=5) #elif CA_PROTOCOL_VERSION > 4 #define CA_V41(MAJOR,MINOR) ( 1 ) #define CA_V42(MAJOR,MINOR) ( 1 ) #define CA_V43(MAJOR,MINOR) ( 1 ) #define CA_V44(MAJOR,MINOR) ( 1 ) +#define CA_V45(MAJOR,MINOR) ( 1 ) #else #define CA_V41(MAJOR,MINOR) ( 0 ) #define CA_V42(MAJOR,MINOR) ( 0 ) #define CA_V43(MAJOR,MINOR) ( 0 ) #define CA_V44(MAJOR,MINOR) ( 0 ) +#define CA_V45(MAJOR,MINOR) ( 0 ) #endif /* @@ -72,7 +75,7 @@ HDRVERSIONID(iocmsgh, "@(#) $Id$ CA version 4.4") typedef unsigned short ca_uint16_t; typedef unsigned int ca_uint32_t; typedef float ca_float32_t; - +typedef ca_uint32_t caResId; /* values for m_cmmd */ #define IOC_NOOP 0 /* do nothing, but verify TCP */ @@ -169,4 +172,5 @@ struct monops { /* monitor req opi to ioc */ struct mon_info m_info; }; -#endif +#endif /* __IOCMSG__ */ +