diff options
author | mor <empty> | 1994-03-07 15:23:07 +0000 |
---|---|---|
committer | mor <empty> | 1994-03-07 15:23:07 +0000 |
commit | e9ae71f8b9cc8a8ea4d15c1e57617931d0ff36af (patch) | |
tree | c61bb3303e76dad2e2844cad9ffa55926756e497 /xc/lib/SM | |
parent | 367c1ea069454509e1ec6e4e2675ac6ec349cfef (diff) |
No longer need array of Sm objects since ICE protocol setup now
has client data field
Diffstat (limited to 'xc/lib/SM')
-rw-r--r-- | xc/lib/SM/SMlibint.h | 7 | ||||
-rw-r--r-- | xc/lib/SM/globals.h | 9 |
2 files changed, 3 insertions, 13 deletions
diff --git a/xc/lib/SM/SMlibint.h b/xc/lib/SM/SMlibint.h index 9dcda4779..ee158e892 100644 --- a/xc/lib/SM/SMlibint.h +++ b/xc/lib/SM/SMlibint.h @@ -1,4 +1,4 @@ -/* $XConsortium: SMlibint.h,v 1.11 93/12/07 11:05:27 mor Exp $ */ +/* $XConsortium: SMlibint.h,v 1.12 94/01/31 11:05:35 mor Exp $ */ /****************************************************************************** Copyright 1993 by the Massachusetts Institute of Technology, @@ -306,12 +306,7 @@ struct _SmsConn { * Extern declarations */ -extern SmcConn _SmcConnectionObjs[256]; -extern int _SmcConnectionCount; extern int _SmcOpcode; - -extern SmsConn _SmsConnectionObjs[256]; -extern int _SmsConnectionCount; extern int _SmsOpcode; extern int _SmVersionCount; diff --git a/xc/lib/SM/globals.h b/xc/lib/SM/globals.h index a45042199..dd364f755 100644 --- a/xc/lib/SM/globals.h +++ b/xc/lib/SM/globals.h @@ -1,4 +1,4 @@ -/* $XConsortium: globals.h,v 1.8 93/12/16 14:51:07 mor Exp $ */ +/* $XConsortium: globals.h,v 1.9 94/02/07 19:21:10 mor Exp $ */ /****************************************************************************** Copyright 1993 by the Massachusetts Institute of Technology, @@ -26,15 +26,10 @@ extern IcePaAuthStatus _IcePaMagicCookie1Proc (); extern Bool _SmcProcessMessage (); extern void _SmsProcessMessage (); -SmcConn _SmcConnectionObjs[256]; -int _SmcConnectionCount = 0; int _SmcOpcode = 0; - -SmsConn _SmsConnectionObjs[256]; -int _SmsConnectionCount = 0; int _SmsOpcode = 0; -int _SmVersionCount = 1; +int _SmVersionCount = 1; IcePoVersionRec _SmcVersions[] = { {SmProtoMajor, SmProtoMinor, _SmcProcessMessage}}; |