diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:28:07 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:28:07 +0000 |
commit | c919c3d0b355ef67dfa0b511eb1da488e5786d1b (patch) | |
tree | 82797ec066f71df481017d8d967764a369d4470d | |
parent | 72e353567f8927996a26e72848d86f692c3f0737 (diff) | |
download | xorg-lib-libICE-c919c3d0b355ef67dfa0b511eb1da488e5786d1b.tar.gz |
XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folksxf86-4_3_99_16
-rw-r--r-- | include/X11/ICE/ICElib.h | 110 | ||||
-rw-r--r-- | include/X11/ICE/ICEmsg.h | 16 | ||||
-rw-r--r-- | include/X11/ICE/ICEutil.h | 20 | ||||
-rw-r--r-- | src/ICElibint.h | 48 | ||||
-rw-r--r-- | src/process.c | 20 |
5 files changed, 16 insertions, 198 deletions
diff --git a/include/X11/ICE/ICElib.h b/include/X11/ICE/ICElib.h index 799899f..34b05eb 100644 --- a/include/X11/ICE/ICElib.h +++ b/include/X11/ICE/ICElib.h @@ -26,7 +26,7 @@ in this Software without prior written authorization from The Open Group. Author: Ralph Mor, X Consortium ******************************************************************************/ -/* $XFree86: xc/lib/ICE/ICElib.h,v 3.4 2001/12/14 19:53:35 dawes Exp $ */ +/* $XFree86: xc/lib/ICE/ICElib.h,v 3.5 2003/11/17 22:20:05 dawes Exp $ */ #ifndef _ICELIB_H_ #define _ICELIB_H_ @@ -39,11 +39,7 @@ Author: Ralph Mor, X Consortium #define True 1 #define False 0 -#if NeedFunctionPrototypes typedef void *IcePointer; -#else -typedef char *IcePointer; -#endif typedef enum { IcePoAuthHaveReply, @@ -103,16 +99,13 @@ typedef struct _IceConn *IceConn; typedef struct _IceListenObj *IceListenObj; typedef void (*IceWatchProc) ( -#if NeedFunctionPrototypes IceConn /* iceConn */, IcePointer /* clientData */, Bool /* opening */, IcePointer * /* watchData */ -#endif ); typedef void (*IcePoProcessMsgProc) ( -#if NeedFunctionPrototypes IceConn /* iceConn */, IcePointer /* clientData */, int /* opcode */, @@ -120,17 +113,14 @@ typedef void (*IcePoProcessMsgProc) ( Bool /* swap */, IceReplyWaitInfo * /* replyWait */, Bool * /* replyReadyRet */ -#endif ); typedef void (*IcePaProcessMsgProc) ( -#if NeedFunctionPrototypes IceConn /* iceConn */, IcePointer /* clientData */, int /* opcode */, unsigned long /* length */, Bool /* swap */ -#endif ); typedef struct { @@ -146,7 +136,6 @@ typedef struct { } IcePaVersionRec; typedef IcePoAuthStatus (*IcePoAuthProc) ( -#if NeedFunctionPrototypes IceConn /* iceConn */, IcePointer * /* authStatePtr */, Bool /* cleanUp */, @@ -156,11 +145,9 @@ typedef IcePoAuthStatus (*IcePoAuthProc) ( int * /* replyDataLenRet */, IcePointer * /* replyDataRet */, char ** /* errorStringRet */ -#endif ); typedef IcePaAuthStatus (*IcePaAuthProc) ( -#if NeedFunctionPrototypes IceConn /* iceConn */, IcePointer * /* authStatePtr */, Bool /* swap */, @@ -169,17 +156,13 @@ typedef IcePaAuthStatus (*IcePaAuthProc) ( int * /* replyDataLenRet */, IcePointer * /* replyDataRet */, char ** /* errorStringRet */ -#endif ); typedef Bool (*IceHostBasedAuthProc) ( -#if NeedFunctionPrototypes char * /* hostName */ -#endif ); typedef Status (*IceProtocolSetupProc) ( -#if NeedFunctionPrototypes IceConn /* iceConn */, int /* majorVersion */, int /* minorVersion */, @@ -187,31 +170,23 @@ typedef Status (*IceProtocolSetupProc) ( char * /* release */, IcePointer * /* clientDataRet */, char ** /* failureReasonRet */ -#endif ); typedef void (*IceProtocolActivateProc) ( -#if NeedFunctionPrototypes IceConn /* iceConn */, IcePointer /* clientData */ -#endif ); typedef void (*IceIOErrorProc) ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); typedef void (*IcePingReplyProc) ( -#if NeedFunctionPrototypes IceConn /* iceConn */, IcePointer /* clientData */ -#endif ); typedef void (*IceErrorHandler) ( -#if NeedFunctionPrototypes IceConn /* iceConn */, Bool /* swap */, int /* offendingMinorOpcode */, @@ -219,13 +194,10 @@ typedef void (*IceErrorHandler) ( int /* errorClass */, int /* severity */, IcePointer /* values */ -#endif ); typedef void (*IceIOErrorHandler) ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); @@ -236,7 +208,6 @@ typedef void (*IceIOErrorHandler) ( _XFUNCPROTOBEGIN extern int IceRegisterForProtocolSetup ( -#if NeedFunctionPrototypes char * /* protocolName */, char * /* vendor */, char * /* release */, @@ -246,11 +217,9 @@ extern int IceRegisterForProtocolSetup ( char ** /* authNames */, IcePoAuthProc * /* authProcs */, IceIOErrorProc /* IOErrorProc */ -#endif ); extern int IceRegisterForProtocolReply ( -#if NeedFunctionPrototypes char * /* protocolName */, char * /* vendor */, char * /* release */, @@ -263,120 +232,88 @@ extern int IceRegisterForProtocolReply ( IceProtocolSetupProc /* protocolSetupProc */, IceProtocolActivateProc /* protocolActivateProc */, IceIOErrorProc /* IOErrorProc */ -#endif ); extern IceConn IceOpenConnection ( -#if NeedFunctionPrototypes char * /* networkIdsList */, IcePointer /* context */, Bool /* mustAuthenticate */, int /* majorOpcodeCheck */, int /* errorLength */, char * /* errorStringRet */ -#endif ); extern IcePointer IceGetConnectionContext ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); extern Status IceListenForConnections ( -#if NeedFunctionPrototypes int * /* countRet */, IceListenObj ** /* listenObjsRet */, int /* errorLength */, char * /* errorStringRet */ -#endif ); extern Status IceListenForWellKnownConnections ( -#if NeedFunctionPrototypes char * /* port */, int * /* countRet */, IceListenObj ** /* listenObjsRet */, int /* errorLength */, char * /* errorStringRet */ -#endif ); extern int IceGetListenConnectionNumber ( -#if NeedFunctionPrototypes IceListenObj /* listenObj */ -#endif ); extern char *IceGetListenConnectionString ( -#if NeedFunctionPrototypes IceListenObj /* listenObj */ -#endif ); extern char *IceComposeNetworkIdList ( -#if NeedFunctionPrototypes int /* count */, IceListenObj * /* listenObjs */ -#endif ); extern void IceFreeListenObjs ( -#if NeedFunctionPrototypes int /* count */, IceListenObj * /* listenObjs */ -#endif ); extern void IceSetHostBasedAuthProc ( -#if NeedFunctionPrototypes IceListenObj /* listenObj */, IceHostBasedAuthProc /* hostBasedAuthProc */ -#endif ); extern IceConn IceAcceptConnection ( -#if NeedFunctionPrototypes IceListenObj /* listenObj */, IceAcceptStatus * /* statusRet */ -#endif ); extern void IceSetShutdownNegotiation ( -#if NeedFunctionPrototypes IceConn /* iceConn */, Bool /* negotiate */ -#endif ); extern Bool IceCheckShutdownNegotiation ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); extern IceCloseStatus IceCloseConnection ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); extern Status IceAddConnectionWatch ( -#if NeedFunctionPrototypes IceWatchProc /* watchProc */, IcePointer /* clientData */ -#endif ); extern void IceRemoveConnectionWatch ( -#if NeedFunctionPrototypes IceWatchProc /* watchProc */, IcePointer /* clientData */ -#endif ); extern IceProtocolSetupStatus IceProtocolSetup ( -#if NeedFunctionPrototypes IceConn /* iceConn */, int /* myOpcode */, IcePointer /* clientData */, @@ -387,127 +324,88 @@ extern IceProtocolSetupStatus IceProtocolSetup ( char ** /* releaseRet */, int /* errorLength */, char * /* errorStringRet */ -#endif ); extern Status IceProtocolShutdown ( -#if NeedFunctionPrototypes IceConn /* iceConn */, int /* majorOpcode */ -#endif ); extern IceProcessMessagesStatus IceProcessMessages ( -#if NeedFunctionPrototypes IceConn /* iceConn */, IceReplyWaitInfo * /* replyWait */, Bool * /* replyReadyRet */ -#endif ); extern Status IcePing ( -#if NeedFunctionPrototypes IceConn /* iceConn */, IcePingReplyProc /* pingReplyProc */, IcePointer /* clientData */ -#endif ); extern char *IceAllocScratch ( -#if NeedFunctionPrototypes IceConn /* iceConn */, unsigned long /* size */ -#endif ); extern int IceFlush ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); extern int IceGetOutBufSize ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); extern int IceGetInBufSize ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); extern IceConnectStatus IceConnectionStatus ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); extern char *IceVendor ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); extern char *IceRelease ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); extern int IceProtocolVersion ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); extern int IceProtocolRevision ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); extern int IceConnectionNumber ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); extern char *IceConnectionString ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); extern unsigned long IceLastSentSequenceNumber ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); extern unsigned long IceLastReceivedSequenceNumber ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); extern Bool IceSwapping ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); extern IceErrorHandler IceSetErrorHandler ( -#if NeedFunctionPrototypes IceErrorHandler /* handler */ -#endif ); extern IceIOErrorHandler IceSetIOErrorHandler ( -#if NeedFunctionPrototypes IceIOErrorHandler /* handler */ -#endif ); @@ -516,21 +414,15 @@ extern IceIOErrorHandler IceSetIOErrorHandler ( */ extern Status IceInitThreads ( -#if NeedFunctionPrototypes void -#endif ); extern void IceAppLockConn ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); extern void IceAppUnlockConn ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); _XFUNCPROTOEND diff --git a/include/X11/ICE/ICEmsg.h b/include/X11/ICE/ICEmsg.h index 94b1a00..2146a6d 100644 --- a/include/X11/ICE/ICEmsg.h +++ b/include/X11/ICE/ICEmsg.h @@ -26,7 +26,7 @@ in this Software without prior written authorization from The Open Group. Author: Ralph Mor, X Consortium ******************************************************************************/ -/* $XFree86: xc/lib/ICE/ICEmsg.h,v 1.4 2001/12/20 19:40:59 tsi Exp $ */ +/* $XFree86: xc/lib/ICE/ICEmsg.h,v 1.5 2003/11/17 22:20:05 dawes Exp $ */ #ifndef _ICEMSG_H_ #define _ICEMSG_H_ @@ -42,65 +42,51 @@ _XFUNCPROTOBEGIN */ extern Status _IceRead ( -#if NeedFunctionPrototypes IceConn /* iceConn */, unsigned long /* nbytes */, char * /* ptr */ -#endif ); extern void _IceReadSkip ( -#if NeedFunctionPrototypes IceConn /* iceConn */, unsigned long /* nbytes */ -#endif ); extern void _IceWrite ( -#if NeedFunctionPrototypes IceConn /* iceConn */, unsigned long /* nbytes */, char * /* ptr */ -#endif ); extern void _IceErrorBadMinor ( -#if NeedFunctionPrototypes IceConn /* iceConn */, int /* majorOpcode */, int /* offendingMinor */, int /* severity */ -#endif ); extern void _IceErrorBadState ( -#if NeedFunctionPrototypes IceConn /* iceConn */, int /* majorOpcode */, int /* offendingMinor */, int /* severity */ -#endif ); extern void _IceErrorBadLength ( -#if NeedFunctionPrototypes IceConn /* iceConn */, int /* majorOpcode */, int /* offendingMinor */, int /* severity */ -#endif ); extern void _IceErrorBadValue ( -#if NeedFunctionPrototypes IceConn /* iceConn */, int /* majorOpcode */, int /* offendingMinor */, int /* offset */, int /* length */, IcePointer /* value */ -#endif ); diff --git a/include/X11/ICE/ICEutil.h b/include/X11/ICE/ICEutil.h index 6b76b94..e63a649 100644 --- a/include/X11/ICE/ICEutil.h +++ b/include/X11/ICE/ICEutil.h @@ -26,7 +26,7 @@ in this Software without prior written authorization from The Open Group. Author: Ralph Mor, X Consortium ******************************************************************************/ -/* $XFree86: xc/lib/ICE/ICEutil.h,v 1.4 2001/12/20 19:40:59 tsi Exp $ */ +/* $XFree86: xc/lib/ICE/ICEutil.h,v 1.5 2003/11/17 22:20:05 dawes Exp $ */ #ifndef _ICEUTIL_H_ #define _ICEUTIL_H_ @@ -80,64 +80,46 @@ typedef struct { */ extern char *IceAuthFileName ( -#if NeedFunctionPrototypes void -#endif ); extern int IceLockAuthFile ( -#if NeedFunctionPrototypes char * /* file_name */, int /* retries */, int /* timeout */, long /* dead */ -#endif ); extern void IceUnlockAuthFile ( -#if NeedFunctionPrototypes char * /* file_name */ -#endif ); extern IceAuthFileEntry *IceReadAuthFileEntry ( -#if NeedFunctionPrototypes FILE * /* auth_file */ -#endif ); extern void IceFreeAuthFileEntry ( -#if NeedFunctionPrototypes IceAuthFileEntry * /* auth */ -#endif ); extern Status IceWriteAuthFileEntry ( -#if NeedFunctionPrototypes FILE * /* auth_file */, IceAuthFileEntry * /* auth */ -#endif ); extern IceAuthFileEntry *IceGetAuthFileEntry ( -#if NeedFunctionPrototypes char * /* protocol_name */, char * /* network_id */, char * /* auth_name */ -#endif ); extern char *IceGenerateMagicCookie ( -#if NeedFunctionPrototypes int /* len */ -#endif ); extern void IceSetPaAuthData ( -#if NeedFunctionPrototypes int /* numEntries */, IceAuthDataEntry * /* entries */ -#endif ); _XFUNCPROTOEND diff --git a/src/ICElibint.h b/src/ICElibint.h index ab979ac..d595680 100644 --- a/src/ICElibint.h +++ b/src/ICElibint.h @@ -26,7 +26,7 @@ in this Software without prior written authorization from The Open Group. Author: Ralph Mor, X Consortium ******************************************************************************/ -/* $XFree86: xc/lib/ICE/ICElibint.h,v 1.6 2001/12/14 19:53:35 dawes Exp $ */ +/* $XFree86: xc/lib/ICE/ICElibint.h,v 1.7 2003/11/17 22:20:05 dawes Exp $ */ #ifndef _ICELIBINT_H_ #define _ICELIBINT_H_ @@ -127,7 +127,6 @@ struct _IceListenObj { */ typedef void (*_IceProcessCoreMsgProc) ( -#if NeedFunctionPrototypes IceConn /* iceConn */, int /* opcode */, unsigned long /* length */, @@ -135,7 +134,6 @@ typedef void (*_IceProcessCoreMsgProc) ( IceReplyWaitInfo * /* replyWait */, Bool * /* replyReadyRet */, Bool * /* connectionClosedRet */ -#endif ); typedef struct { @@ -411,173 +409,129 @@ extern IceIOErrorHandler _IceIOErrorHandler; extern void _IceErrorBadMajor ( -#if NeedFunctionPrototypes IceConn /* iceConn */, int /* offendingMajor */, int /* offendingMinor */, int /* severity */ -#endif ); extern void _IceErrorNoAuthentication ( -#if NeedFunctionPrototypes IceConn /* iceConn */, int /* offendingMinor */ -#endif ); extern void _IceErrorNoVersion ( -#if NeedFunctionPrototypes IceConn /* iceConn */, int /* offendingMinor */ -#endif ); extern void _IceErrorSetupFailed ( -#if NeedFunctionPrototypes IceConn /* iceConn */, int /* offendingMinor */, char * /* reason */ -#endif ); extern void _IceErrorAuthenticationRejected ( -#if NeedFunctionPrototypes IceConn /* iceConn */, int /* offendingMinor */, char * /* reason */ -#endif ); extern void _IceErrorAuthenticationFailed ( -#if NeedFunctionPrototypes IceConn /* iceConn */, int /* offendingMinor */, char * /* reason */ -#endif ); extern void _IceErrorProtocolDuplicate ( -#if NeedFunctionPrototypes IceConn /* iceConn */, char * /* protocolName */ -#endif ); extern void _IceErrorMajorOpcodeDuplicate ( -#if NeedFunctionPrototypes IceConn /* iceConn */, int /* majorOpcode */ -#endif ); extern void _IceErrorUnknownProtocol ( -#if NeedFunctionPrototypes IceConn /* iceConn */, char * /* protocolName */ -#endif ); extern void _IceAddOpcodeMapping ( -#if NeedFunctionPrototypes IceConn /* iceConn */, int /* hisOpcode */, int /* myOpcode */ -#endif ); extern char *_IceGetPeerName ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); extern void _IceFreeConnection ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); extern void _IceAddReplyWait ( -#if NeedFunctionPrototypes IceConn /* iceConn */, IceReplyWaitInfo * /* replyWait */ -#endif ); extern IceReplyWaitInfo *_IceSearchReplyWaits ( -#if NeedFunctionPrototypes IceConn /* iceConn */, int /* majorOpcode */ -#endif ); extern void _IceSetReplyReady ( -#if NeedFunctionPrototypes IceConn /* iceConn */, IceReplyWaitInfo * /* replyWait */ -#endif ); extern Bool _IceCheckReplyReady ( -#if NeedFunctionPrototypes IceConn /* iceConn */, IceReplyWaitInfo * /* replyWait */ -#endif ); extern void _IceConnectionOpened ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); extern void _IceConnectionClosed ( -#if NeedFunctionPrototypes IceConn /* iceConn */ -#endif ); extern void _IceGetPoAuthData ( -#if NeedFunctionPrototypes char * /* protocol_name */, char * /* address */, char * /* auth_name */, unsigned short * /* auth_data_length_ret */, char ** /* auth_data_ret */ -#endif ); extern void _IceGetPaAuthData ( -#if NeedFunctionPrototypes char * /* protocol_name */, char * /* address */, char * /* auth_name */, unsigned short * /* auth_data_length_ret */, char ** /* auth_data_ret */ -#endif ); extern void _IceGetPoValidAuthIndices ( -#if NeedFunctionPrototypes char * /* protocol_name */, char * /* address */, int /* num_auth_names */, char ** /* auth_names */, int * /* num_indices_ret */, int * /* indices_ret */ -#endif ); extern void _IceGetPaValidAuthIndices ( -#if NeedFunctionPrototypes char * /* protocol_name */, char * /* address */, int /* num_auth_names */, char ** /* auth_names */, int * /* num_indices_ret */, int * /* indices_ret */ -#endif ); #endif /* _ICELIBINT_H_ */ diff --git a/src/process.c b/src/process.c index 0136f41..d733017 100644 --- a/src/process.c +++ b/src/process.c @@ -26,7 +26,7 @@ in this Software without prior written authorization from The Open Group. Author: Ralph Mor, X Consortium ******************************************************************************/ -/* $XFree86: xc/lib/ICE/process.c,v 3.8 2001/12/14 19:53:36 dawes Exp $ */ +/* $XFree86: xc/lib/ICE/process.c,v 3.10 2003/10/23 21:31:49 tsi Exp $ */ #include <X11/ICE/ICElib.h> #include "ICElibint.h" @@ -37,11 +37,11 @@ Author: Ralph Mor, X Consortium * Check for bad length */ -#define CHECK_SIZE_MATCH(_iceConn, _opcode, _expected_len, _actual_len, _severity) \ +#define CHECK_SIZE_MATCH(_iceConn, _opcode, _expected_len, _actual_len, _severity, _return) \ if ((((_actual_len) - SIZEOF (iceMsg)) >> 3) != _expected_len) \ { \ _IceErrorBadLength (_iceConn, 0, _opcode, _severity); \ - return (0); \ + return (_return); \ } #define CHECK_AT_LEAST_SIZE(_iceConn, _opcode, _expected_len, _actual_len, _severity) \ @@ -187,7 +187,7 @@ Bool *replyReadyRet; CHECK_SIZE_MATCH (iceConn, ICE_ByteOrder, header->length, SIZEOF (iceByteOrderMsg), - IceFatalToConnection); + IceFatalToConnection, IceProcessMessagesIOError); if (byteOrder != IceMSBfirst && byteOrder != IceLSBfirst) { @@ -1697,8 +1697,10 @@ IceReplyWaitInfo *replyWait; char *pData, *pStart, *pEnd; Bool replyReady; +#if 0 /* No-op */ CHECK_AT_LEAST_SIZE (iceConn, ICE_ConnectionReply, length, SIZEOF (iceConnectionReplyMsg), IceFatalToConnection); +#endif IceReadCompleteMessage (iceConn, SIZEOF (iceConnectionReplyMsg), iceConnectionReplyMsg, message, pStart); @@ -2196,8 +2198,10 @@ IceReplyWaitInfo *replyWait; char *pData, *pStart, *pEnd; Bool replyReady; +#if 0 /* No-op */ CHECK_AT_LEAST_SIZE (iceConn, ICE_ProtocolReply, length, SIZEOF (iceProtocolReplyMsg), IceFatalToProtocol); +#endif IceReadCompleteMessage (iceConn, SIZEOF (iceProtocolReplyMsg), iceProtocolReplyMsg, message, pStart); @@ -2304,7 +2308,7 @@ unsigned long length; { CHECK_SIZE_MATCH (iceConn, ICE_Ping, - length, SIZEOF (icePingMsg), IceFatalToConnection); + length, SIZEOF (icePingMsg), IceFatalToConnection, 0); PingReply (iceConn); @@ -2321,7 +2325,7 @@ unsigned long length; { CHECK_SIZE_MATCH (iceConn, ICE_PingReply, - length, SIZEOF (icePingReplyMsg), IceFatalToConnection); + length, SIZEOF (icePingReplyMsg), IceFatalToConnection, 0); if (iceConn->ping_waits) { @@ -2354,7 +2358,7 @@ Bool *connectionClosedRet; *connectionClosedRet = False; CHECK_SIZE_MATCH (iceConn, ICE_WantToClose, - length, SIZEOF (iceWantToCloseMsg), IceFatalToConnection); + length, SIZEOF (iceWantToCloseMsg), IceFatalToConnection, 0); if (iceConn->want_to_close || iceConn->open_ref_count == 0) { @@ -2411,7 +2415,7 @@ unsigned long length; { CHECK_SIZE_MATCH (iceConn, ICE_NoClose, - length, SIZEOF (iceNoCloseMsg), IceFatalToConnection); + length, SIZEOF (iceNoCloseMsg), IceFatalToConnection, 0); if (iceConn->want_to_close) { |