zeroc-ice 3.7.2 → 3.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/ext/Config.h +4 -0
- data/ext/Operation.cpp +5 -5
- data/ext/Properties.cpp +1 -1
- data/ext/Proxy.cpp +16 -2
- data/ext/Types.cpp +45 -40
- data/ext/Util.cpp +1 -1
- data/ext/Util.h +10 -8
- data/ext/ice/cpp/include/Ice/Config.h +4 -0
- data/ext/ice/cpp/include/Ice/FactoryTableInit.h +1 -1
- data/ext/ice/cpp/include/Ice/IconvStringConverter.h +4 -3
- data/ext/ice/cpp/include/Ice/InputStream.h +4 -4
- data/ext/ice/cpp/include/Ice/Optional.h +11 -0
- data/ext/ice/cpp/include/Ice/OutgoingAsync.h +1 -1
- data/ext/ice/cpp/include/Ice/OutputStream.h +5 -5
- data/ext/ice/cpp/include/Ice/Proxy.h +17 -5
- data/ext/ice/cpp/include/Ice/StreamHelpers.h +1 -1
- data/ext/ice/cpp/include/Ice/Value.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Atomic.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Config.h +16 -6
- data/ext/ice/cpp/include/IceUtil/ConsoleUtil.h +4 -4
- data/ext/ice/cpp/include/IceUtil/Optional.h +8 -0
- data/ext/ice/cpp/include/IceUtil/OutputUtil.h +17 -14
- data/ext/ice/cpp/include/IceUtil/Random.h +1 -1
- data/ext/ice/cpp/include/IceUtil/ResourceConfig.h +2 -2
- data/ext/ice/cpp/include/IceUtil/ScannerConfig.h +6 -0
- data/ext/ice/cpp/include/IceUtil/StringConverter.h +1 -1
- data/ext/ice/cpp/include/generated/Ice/BuiltinSequences.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/Communicator.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/CommunicatorF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/Connection.h +33 -36
- data/ext/ice/cpp/include/generated/Ice/ConnectionF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/Current.h +20 -21
- data/ext/ice/cpp/include/generated/Ice/Endpoint.h +24 -24
- data/ext/ice/cpp/include/generated/Ice/EndpointF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/EndpointTypes.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/FacetMap.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/Identity.h +4 -5
- data/ext/ice/cpp/include/generated/Ice/ImplicitContext.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/ImplicitContextF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/Instrumentation.h +15 -15
- data/ext/ice/cpp/include/generated/Ice/InstrumentationF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/LocalException.h +27 -93
- data/ext/ice/cpp/include/generated/Ice/Locator.h +27 -32
- data/ext/ice/cpp/include/generated/Ice/LocatorF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/Logger.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/LoggerF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/Metrics.h +75 -79
- data/ext/ice/cpp/include/generated/Ice/ObjectAdapter.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/ObjectAdapterF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/ObjectFactory.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/Plugin.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/PluginF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/Process.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/ProcessF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/Properties.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/PropertiesAdmin.h +9 -9
- data/ext/ice/cpp/include/generated/Ice/PropertiesF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/RemoteLogger.h +9 -11
- data/ext/ice/cpp/include/generated/Ice/Router.h +22 -22
- data/ext/ice/cpp/include/generated/Ice/RouterF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/ServantLocator.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/ServantLocatorF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/SliceChecksumDict.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/ValueFactory.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/Version.h +15 -17
- data/ext/ice/cpp/include/generated/IceSSL/ConnectionInfo.h +3 -3
- data/ext/ice/cpp/include/generated/IceSSL/ConnectionInfoF.h +3 -3
- data/ext/ice/cpp/include/generated/IceSSL/EndpointInfo.h +3 -3
- data/ext/ice/cpp/src/Ice/ArgVector.cpp +3 -3
- data/ext/ice/cpp/src/Ice/Base64.cpp +11 -12
- data/ext/ice/cpp/src/Ice/BatchRequestQueue.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Buffer.cpp +2 -2
- data/ext/ice/cpp/src/Ice/BuiltinSequences.cpp +3 -3
- data/ext/ice/cpp/src/Ice/Communicator.cpp +3 -3
- data/ext/ice/cpp/src/Ice/CommunicatorF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/CommunicatorI.cpp +19 -0
- data/ext/ice/cpp/src/Ice/CommunicatorI.h +5 -0
- data/ext/ice/cpp/src/Ice/Connection.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ConnectionF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ConnectionI.cpp +31 -16
- data/ext/ice/cpp/src/Ice/Current.cpp +3 -3
- data/ext/ice/cpp/src/Ice/DispatchInterceptor.cpp +13 -0
- data/ext/ice/cpp/src/Ice/DynamicLibrary.cpp +6 -5
- data/ext/ice/cpp/src/Ice/Endpoint.cpp +3 -3
- data/ext/ice/cpp/src/Ice/EndpointF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/EndpointTypes.cpp +3 -3
- data/ext/ice/cpp/src/Ice/Exception.cpp +5 -5
- data/ext/ice/cpp/src/Ice/FacetMap.cpp +3 -3
- data/ext/ice/cpp/src/Ice/HashUtil.h +1 -1
- data/ext/ice/cpp/src/Ice/IPEndpointI.cpp +12 -1
- data/ext/ice/cpp/src/Ice/Identity.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ImplicitContext.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ImplicitContextF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/Incoming.cpp +2 -0
- data/ext/ice/cpp/src/Ice/Initialize.cpp +4 -3
- data/ext/ice/cpp/src/Ice/InputStream.cpp +19 -19
- data/ext/ice/cpp/src/Ice/Instance.cpp +28 -8
- data/ext/ice/cpp/src/Ice/Instrumentation.cpp +3 -3
- data/ext/ice/cpp/src/Ice/InstrumentationF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/LocalException.cpp +3 -3
- data/ext/ice/cpp/src/Ice/Locator.cpp +7 -7
- data/ext/ice/cpp/src/Ice/LocatorF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/Logger.cpp +3 -3
- data/ext/ice/cpp/src/Ice/LoggerAdminI.cpp +1 -7
- data/ext/ice/cpp/src/Ice/LoggerF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/LoggerI.cpp +6 -0
- data/ext/ice/cpp/src/Ice/Metrics.cpp +5 -5
- data/ext/ice/cpp/src/Ice/Network.cpp +23 -22
- data/ext/ice/cpp/src/Ice/Network.h +1 -1
- data/ext/ice/cpp/src/Ice/OSLogLoggerI.cpp +57 -0
- data/ext/ice/cpp/src/Ice/OSLogLoggerI.h +40 -0
- data/ext/ice/cpp/src/Ice/Object.cpp +9 -7
- data/ext/ice/cpp/src/Ice/ObjectAdapter.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ObjectAdapterF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ObjectAdapterI.cpp +13 -1
- data/ext/ice/cpp/src/Ice/ObjectAdapterI.h +4 -0
- data/ext/ice/cpp/src/Ice/ObjectFactory.cpp +3 -3
- data/ext/ice/cpp/src/Ice/OutgoingAsync.cpp +1 -1
- data/ext/ice/cpp/src/Ice/OutputStream.cpp +24 -24
- data/ext/ice/cpp/src/Ice/Plugin.cpp +3 -3
- data/ext/ice/cpp/src/Ice/PluginF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/Process.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ProcessF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/Properties.cpp +3 -3
- data/ext/ice/cpp/src/Ice/PropertiesAdmin.cpp +4 -4
- data/ext/ice/cpp/src/Ice/PropertiesF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/PropertyNames.cpp +2 -1
- data/ext/ice/cpp/src/Ice/PropertyNames.h +1 -1
- data/ext/ice/cpp/src/Ice/Proxy.cpp +6 -0
- data/ext/ice/cpp/src/Ice/ProxyFactory.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ReferenceFactory.cpp +1 -1
- data/ext/ice/cpp/src/Ice/RegisterPluginsInit.cpp +3 -2
- data/ext/ice/cpp/src/Ice/RemoteLogger.cpp +3 -3
- data/ext/ice/cpp/src/Ice/Router.cpp +6 -6
- data/ext/ice/cpp/src/Ice/RouterF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/SHA1.cpp +2 -2
- data/ext/ice/cpp/src/Ice/Selector.cpp +18 -13
- data/ext/ice/cpp/src/Ice/ServantLocator.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ServantLocatorF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/SliceChecksumDict.cpp +3 -3
- data/ext/ice/cpp/src/Ice/StreamSocket.cpp +6 -6
- data/ext/ice/cpp/src/Ice/TcpAcceptor.cpp +6 -0
- data/ext/ice/cpp/src/Ice/TcpConnector.cpp +5 -0
- data/ext/ice/cpp/src/Ice/TcpEndpointI.cpp +5 -0
- data/ext/ice/cpp/src/Ice/TcpTransceiver.cpp +5 -0
- data/ext/ice/cpp/src/Ice/ThreadPool.cpp +63 -0
- data/ext/ice/cpp/src/Ice/ThreadPool.h +10 -2
- data/ext/ice/cpp/src/Ice/Timer.cpp +10 -0
- data/ext/ice/cpp/src/Ice/UdpEndpointI.cpp +11 -1
- data/ext/ice/cpp/src/Ice/UdpTransceiver.cpp +10 -2
- data/ext/ice/cpp/src/Ice/ValueFactory.cpp +3 -3
- data/ext/ice/cpp/src/Ice/Version.cpp +3 -3
- data/ext/ice/cpp/src/Ice/WSTransceiver.cpp +16 -15
- data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.cpp +3 -3
- data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.h +3 -3
- data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.cpp +3 -3
- data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.h +3 -3
- data/ext/ice/cpp/src/IceLocatorDiscovery/PluginI.cpp +37 -8
- data/ext/ice/cpp/src/IceSSL/CertificateI.cpp +3 -3
- data/ext/ice/cpp/src/IceSSL/ConnectionInfo.cpp +3 -3
- data/ext/ice/cpp/src/IceSSL/ConnectionInfoF.cpp +3 -3
- data/ext/ice/cpp/src/IceSSL/EndpointInfo.cpp +3 -3
- data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.cpp +4 -16
- data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.h +0 -1
- data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.cpp +40 -3
- data/ext/ice/cpp/src/IceSSL/SChannelEngine.cpp +0 -7
- data/ext/ice/cpp/src/IceSSL/SChannelEngine.h +0 -2
- data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.cpp +18 -6
- data/ext/ice/cpp/src/IceSSL/SSLEngine.cpp +19 -7
- data/ext/ice/cpp/src/IceSSL/SSLEngine.h +2 -0
- data/ext/ice/cpp/src/IceSSL/SecureTransportCertificateI.cpp +32 -21
- data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.cpp +21 -6
- data/ext/ice/cpp/src/IceSSL/SecureTransportUtil.cpp +19 -16
- data/ext/ice/cpp/src/IceSSL/Util.cpp +11 -5
- data/ext/ice/cpp/src/IceUtil/FileUtil.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/Options.cpp +3 -3
- data/ext/ice/cpp/src/IceUtil/OutputUtil.cpp +40 -10
- data/ext/ice/cpp/src/IceUtil/Random.cpp +2 -2
- data/ext/ice/cpp/src/IceUtil/StringConverter.cpp +5 -5
- data/ext/ice/cpp/src/IceUtil/StringUtil.cpp +3 -3
- data/ext/ice/cpp/src/IceUtil/Time.cpp +3 -3
- data/ext/ice/cpp/src/IceUtil/UUID.cpp +5 -5
- data/ext/ice/cpp/src/IceUtil/UtilException.cpp +4 -4
- data/ext/ice/cpp/src/Slice/CPlusPlusUtil.cpp +13 -9
- data/ext/ice/cpp/src/Slice/CPlusPlusUtil.h +1 -1
- data/ext/ice/cpp/src/Slice/Grammar.cpp +8 -0
- data/ext/ice/cpp/src/Slice/JavaUtil.cpp +1 -2
- data/ext/ice/cpp/src/Slice/MD5I.cpp +8 -0
- data/ext/ice/cpp/src/Slice/Parser.cpp +60 -112
- data/ext/ice/cpp/src/Slice/Parser.h +27 -1
- data/ext/ice/cpp/src/Slice/Preprocessor.cpp +2 -1
- data/ext/ice/cpp/src/Slice/PythonUtil.cpp +10 -10
- data/ext/ice/cpp/src/Slice/RubyUtil.cpp +1 -1
- data/ext/ice/cpp/src/Slice/Scanner.cpp +8 -0
- data/ext/ice/cpp/src/Slice/StringLiteralUtil.cpp +11 -6
- data/ext/ice/mcpp/Makefile +2 -5
- data/ice.gemspec +1 -1
- data/lib/Glacier2/Metrics.rb +1 -1
- data/lib/Glacier2/PermissionsVerifier.rb +1 -1
- data/lib/Glacier2/PermissionsVerifierF.rb +1 -1
- data/lib/Glacier2/Router.rb +1 -1
- data/lib/Glacier2/RouterF.rb +1 -1
- data/lib/Glacier2/SSLInfo.rb +1 -1
- data/lib/Glacier2/Session.rb +1 -1
- data/lib/Ice/BuiltinSequences.rb +1 -1
- data/lib/Ice/Communicator.rb +1 -1
- data/lib/Ice/CommunicatorF.rb +1 -1
- data/lib/Ice/Connection.rb +1 -1
- data/lib/Ice/ConnectionF.rb +1 -1
- data/lib/Ice/Current.rb +1 -1
- data/lib/Ice/Endpoint.rb +1 -1
- data/lib/Ice/EndpointF.rb +1 -1
- data/lib/Ice/EndpointTypes.rb +1 -1
- data/lib/Ice/FacetMap.rb +1 -1
- data/lib/Ice/Identity.rb +1 -1
- data/lib/Ice/ImplicitContext.rb +1 -1
- data/lib/Ice/ImplicitContextF.rb +1 -1
- data/lib/Ice/Instrumentation.rb +1 -1
- data/lib/Ice/InstrumentationF.rb +1 -1
- data/lib/Ice/LocalException.rb +1 -1
- data/lib/Ice/Locator.rb +1 -1
- data/lib/Ice/LocatorF.rb +1 -1
- data/lib/Ice/Logger.rb +1 -1
- data/lib/Ice/LoggerF.rb +1 -1
- data/lib/Ice/Metrics.rb +1 -1
- data/lib/Ice/ObjectAdapter.rb +1 -1
- data/lib/Ice/ObjectAdapterF.rb +1 -1
- data/lib/Ice/ObjectFactory.rb +1 -1
- data/lib/Ice/Plugin.rb +1 -1
- data/lib/Ice/PluginF.rb +1 -1
- data/lib/Ice/Process.rb +1 -1
- data/lib/Ice/ProcessF.rb +1 -1
- data/lib/Ice/Properties.rb +1 -1
- data/lib/Ice/PropertiesAdmin.rb +1 -1
- data/lib/Ice/PropertiesF.rb +1 -1
- data/lib/Ice/RemoteLogger.rb +1 -1
- data/lib/Ice/Router.rb +1 -1
- data/lib/Ice/RouterF.rb +1 -1
- data/lib/Ice/ServantLocator.rb +1 -1
- data/lib/Ice/ServantLocatorF.rb +1 -1
- data/lib/Ice/SliceChecksumDict.rb +1 -1
- data/lib/Ice/ValueFactory.rb +1 -1
- data/lib/Ice/Version.rb +1 -1
- data/lib/IceBox/IceBox.rb +1 -1
- data/lib/IceGrid/Admin.rb +1 -1
- data/lib/IceGrid/Descriptor.rb +1 -1
- data/lib/IceGrid/Exception.rb +1 -1
- data/lib/IceGrid/FileParser.rb +1 -1
- data/lib/IceGrid/PluginFacade.rb +1 -1
- data/lib/IceGrid/Registry.rb +1 -1
- data/lib/IceGrid/Session.rb +1 -1
- data/lib/IceGrid/UserAccountMapper.rb +1 -1
- data/lib/IcePatch2/FileInfo.rb +1 -1
- data/lib/IcePatch2/FileServer.rb +1 -1
- data/lib/IceStorm/IceStorm.rb +1 -1
- data/lib/IceStorm/Metrics.rb +1 -1
- data/slice/Glacier2/Metrics.ice +1 -1
- data/slice/Ice/Communicator.ice +57 -25
- data/slice/Ice/Connection.ice +14 -14
- data/slice/Ice/Current.ice +1 -1
- data/slice/Ice/Endpoint.ice +6 -6
- data/slice/Ice/EndpointF.ice +1 -1
- data/slice/Ice/FacetMap.ice +1 -1
- data/slice/Ice/ImplicitContext.ice +6 -6
- data/slice/Ice/Instrumentation.ice +6 -6
- data/slice/Ice/Logger.ice +6 -6
- data/slice/Ice/Metrics.ice +12 -9
- data/slice/Ice/ObjectAdapter.ice +43 -31
- data/slice/Ice/ObjectFactory.ice +1 -1
- data/slice/Ice/Plugin.ice +2 -2
- data/slice/Ice/Properties.ice +10 -10
- data/slice/Ice/ServantLocator.ice +4 -2
- data/slice/Ice/ValueFactory.ice +3 -3
- data/slice/IceBT/EndpointInfo.ice +1 -1
- data/slice/IceGrid/PluginFacade.ice +4 -4
- data/slice/IceIAP/ConnectionInfo.ice +1 -1
- data/slice/IceIAP/EndpointInfo.ice +1 -1
- data/slice/IceSSL/ConnectionInfo.ice +3 -2
- data/slice/IceSSL/ConnectionInfoF.ice +1 -1
- data/slice/IceSSL/EndpointInfo.ice +1 -1
- data/slice/IceStorm/Metrics.ice +1 -1
- metadata +5 -3
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
# if ICE_INT_VERSION / 100 != 307
|
|
34
34
|
# error Ice version mismatch!
|
|
35
35
|
# endif
|
|
36
|
-
# if ICE_INT_VERSION % 100
|
|
36
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
37
37
|
# error Beta header file detected
|
|
38
38
|
# endif
|
|
39
|
-
# if ICE_INT_VERSION % 100 <
|
|
39
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
40
40
|
# error Ice patch level mismatch!
|
|
41
41
|
# endif
|
|
42
42
|
#endif
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
# if ICE_INT_VERSION / 100 != 307
|
|
35
35
|
# error Ice version mismatch!
|
|
36
36
|
# endif
|
|
37
|
-
# if ICE_INT_VERSION % 100
|
|
37
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
38
38
|
# error Beta header file detected
|
|
39
39
|
# endif
|
|
40
|
-
# if ICE_INT_VERSION % 100 <
|
|
40
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
41
41
|
# error Ice patch level mismatch!
|
|
42
42
|
# endif
|
|
43
43
|
#endif
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
# if ICE_INT_VERSION / 100 != 307
|
|
33
33
|
# error Ice version mismatch!
|
|
34
34
|
# endif
|
|
35
|
-
# if ICE_INT_VERSION % 100
|
|
35
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
36
36
|
# error Beta header file detected
|
|
37
37
|
# endif
|
|
38
|
-
# if ICE_INT_VERSION % 100 <
|
|
38
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
39
39
|
# error Ice patch level mismatch!
|
|
40
40
|
# endif
|
|
41
41
|
#endif
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
# if ICE_INT_VERSION / 100 != 307
|
|
33
33
|
# error Ice version mismatch!
|
|
34
34
|
# endif
|
|
35
|
-
# if ICE_INT_VERSION % 100
|
|
35
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
36
36
|
# error Beta header file detected
|
|
37
37
|
# endif
|
|
38
|
-
# if ICE_INT_VERSION % 100 <
|
|
38
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
39
39
|
# error Ice patch level mismatch!
|
|
40
40
|
# endif
|
|
41
41
|
#endif
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
# if ICE_INT_VERSION / 100 != 307
|
|
33
33
|
# error Ice version mismatch!
|
|
34
34
|
# endif
|
|
35
|
-
# if ICE_INT_VERSION % 100
|
|
35
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
36
36
|
# error Beta header file detected
|
|
37
37
|
# endif
|
|
38
|
-
# if ICE_INT_VERSION % 100 <
|
|
38
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
39
39
|
# error Ice patch level mismatch!
|
|
40
40
|
# endif
|
|
41
41
|
#endif
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
# if ICE_INT_VERSION / 100 != 307
|
|
33
33
|
# error Ice version mismatch!
|
|
34
34
|
# endif
|
|
35
|
-
# if ICE_INT_VERSION % 100
|
|
35
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
36
36
|
# error Beta header file detected
|
|
37
37
|
# endif
|
|
38
|
-
# if ICE_INT_VERSION % 100 <
|
|
38
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
39
39
|
# error Ice patch level mismatch!
|
|
40
40
|
# endif
|
|
41
41
|
#endif
|
|
@@ -61,15 +61,14 @@ namespace Ice
|
|
|
61
61
|
*/
|
|
62
62
|
struct ProtocolVersion
|
|
63
63
|
{
|
|
64
|
-
Byte major;
|
|
65
|
-
Byte minor;
|
|
64
|
+
::Ice::Byte major;
|
|
65
|
+
::Ice::Byte minor;
|
|
66
66
|
|
|
67
67
|
/**
|
|
68
|
-
* Obtains a tuple containing all of the
|
|
68
|
+
* Obtains a tuple containing all of the struct's data members.
|
|
69
69
|
* @return The data members in a tuple.
|
|
70
70
|
*/
|
|
71
|
-
|
|
72
|
-
std::tuple<const Byte&, const Byte&> ice_tuple() const
|
|
71
|
+
std::tuple<const ::Ice::Byte&, const ::Ice::Byte&> ice_tuple() const
|
|
73
72
|
{
|
|
74
73
|
return std::tie(major, minor);
|
|
75
74
|
}
|
|
@@ -81,15 +80,14 @@ struct ProtocolVersion
|
|
|
81
80
|
*/
|
|
82
81
|
struct EncodingVersion
|
|
83
82
|
{
|
|
84
|
-
Byte major;
|
|
85
|
-
Byte minor;
|
|
83
|
+
::Ice::Byte major;
|
|
84
|
+
::Ice::Byte minor;
|
|
86
85
|
|
|
87
86
|
/**
|
|
88
|
-
* Obtains a tuple containing all of the
|
|
87
|
+
* Obtains a tuple containing all of the struct's data members.
|
|
89
88
|
* @return The data members in a tuple.
|
|
90
89
|
*/
|
|
91
|
-
|
|
92
|
-
std::tuple<const Byte&, const Byte&> ice_tuple() const
|
|
90
|
+
std::tuple<const ::Ice::Byte&, const ::Ice::Byte&> ice_tuple() const
|
|
93
91
|
{
|
|
94
92
|
return std::tie(major, minor);
|
|
95
93
|
}
|
|
@@ -156,8 +154,8 @@ namespace Ice
|
|
|
156
154
|
*/
|
|
157
155
|
struct ProtocolVersion
|
|
158
156
|
{
|
|
159
|
-
Byte major;
|
|
160
|
-
Byte minor;
|
|
157
|
+
::Ice::Byte major;
|
|
158
|
+
::Ice::Byte minor;
|
|
161
159
|
|
|
162
160
|
bool operator==(const ProtocolVersion& rhs_) const
|
|
163
161
|
{
|
|
@@ -225,8 +223,8 @@ struct ProtocolVersion
|
|
|
225
223
|
*/
|
|
226
224
|
struct EncodingVersion
|
|
227
225
|
{
|
|
228
|
-
Byte major;
|
|
229
|
-
Byte minor;
|
|
226
|
+
::Ice::Byte major;
|
|
227
|
+
::Ice::Byte minor;
|
|
230
228
|
|
|
231
229
|
bool operator==(const EncodingVersion& rhs_) const
|
|
232
230
|
{
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -35,10 +35,10 @@
|
|
|
35
35
|
# if ICE_INT_VERSION / 100 != 307
|
|
36
36
|
# error Ice version mismatch!
|
|
37
37
|
# endif
|
|
38
|
-
# if ICE_INT_VERSION % 100
|
|
38
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
39
39
|
# error Beta header file detected
|
|
40
40
|
# endif
|
|
41
|
-
# if ICE_INT_VERSION % 100 <
|
|
41
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
42
42
|
# error Ice patch level mismatch!
|
|
43
43
|
# endif
|
|
44
44
|
#endif
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
# if ICE_INT_VERSION / 100 != 307
|
|
33
33
|
# error Ice version mismatch!
|
|
34
34
|
# endif
|
|
35
|
-
# if ICE_INT_VERSION % 100
|
|
35
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
36
36
|
# error Beta header file detected
|
|
37
37
|
# endif
|
|
38
|
-
# if ICE_INT_VERSION % 100 <
|
|
38
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
39
39
|
# error Ice patch level mismatch!
|
|
40
40
|
# endif
|
|
41
41
|
#endif
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
# if ICE_INT_VERSION / 100 != 307
|
|
34
34
|
# error Ice version mismatch!
|
|
35
35
|
# endif
|
|
36
|
-
# if ICE_INT_VERSION % 100
|
|
36
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
37
37
|
# error Beta header file detected
|
|
38
38
|
# endif
|
|
39
|
-
# if ICE_INT_VERSION % 100 <
|
|
39
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
40
40
|
# error Ice patch level mismatch!
|
|
41
41
|
# endif
|
|
42
42
|
#endif
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
IceInternal::ArgVector::ArgVector(int argcP, const char* const argvP[])
|
|
9
9
|
{
|
|
10
10
|
assert(argcP >= 0);
|
|
11
|
-
_args.resize(argcP);
|
|
12
|
-
for(
|
|
11
|
+
_args.resize(static_cast<size_t>(argcP));
|
|
12
|
+
for(size_t i = 0; i < static_cast<size_t>(argcP); ++i)
|
|
13
13
|
{
|
|
14
14
|
_args[i] = argvP[i];
|
|
15
15
|
}
|
|
@@ -51,7 +51,7 @@ IceInternal::ArgVector::setupArgcArgv()
|
|
|
51
51
|
{
|
|
52
52
|
throw ::std::bad_alloc();
|
|
53
53
|
}
|
|
54
|
-
for(
|
|
54
|
+
for(size_t i = 0; i < static_cast<size_t>(argc); i++)
|
|
55
55
|
{
|
|
56
56
|
argv[i] = const_cast<char*>(_args[i].c_str());
|
|
57
57
|
}
|
|
@@ -49,8 +49,8 @@ IceInternal::Base64::encode(const vector<unsigned char>& plainSeq)
|
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
by4 = by1 >> 2;
|
|
52
|
-
by5 = ((by1 & 0x3) << 4) | (by2 >> 4);
|
|
53
|
-
by6 = ((by2 & 0xf) << 2) | (by3 >> 6);
|
|
52
|
+
by5 = static_cast<unsigned char>((by1 & 0x3) << 4) | (by2 >> 4);
|
|
53
|
+
by6 = static_cast<unsigned char>((by2 & 0xf) << 2) | (by3 >> 6);
|
|
54
54
|
by7 = by3 & 0x3f;
|
|
55
55
|
|
|
56
56
|
retval += encode(by4);
|
|
@@ -132,7 +132,6 @@ IceInternal::Base64::decode(const string& str)
|
|
|
132
132
|
|
|
133
133
|
for(size_t i = 0; i < newStr.length(); i += 4)
|
|
134
134
|
{
|
|
135
|
-
c1 = 'A';
|
|
136
135
|
c2 = 'A';
|
|
137
136
|
c3 = 'A';
|
|
138
137
|
c4 = 'A';
|
|
@@ -159,16 +158,16 @@ IceInternal::Base64::decode(const string& str)
|
|
|
159
158
|
by3 = decode(c3);
|
|
160
159
|
by4 = decode(c4);
|
|
161
160
|
|
|
162
|
-
retval.push_back((by1 << 2) | (by2 >> 4));
|
|
161
|
+
retval.push_back(static_cast<unsigned char>(by1 << 2) | (by2 >> 4));
|
|
163
162
|
|
|
164
163
|
if(c3 != '=')
|
|
165
164
|
{
|
|
166
|
-
retval.push_back(((by2 & 0xf) << 4) | (by3 >> 2));
|
|
165
|
+
retval.push_back(static_cast<unsigned char>((by2 & 0xf) << 4) | (by3 >> 2));
|
|
167
166
|
}
|
|
168
167
|
|
|
169
168
|
if(c4 != '=')
|
|
170
169
|
{
|
|
171
|
-
retval.push_back(((by3 & 0x3) << 6) | by4);
|
|
170
|
+
retval.push_back(static_cast<unsigned char>((by3 & 0x3) << 6) | by4);
|
|
172
171
|
}
|
|
173
172
|
}
|
|
174
173
|
|
|
@@ -216,17 +215,17 @@ IceInternal::Base64::encode(unsigned char uc)
|
|
|
216
215
|
{
|
|
217
216
|
if(uc < 26)
|
|
218
217
|
{
|
|
219
|
-
return 'A' + uc;
|
|
218
|
+
return 'A' + static_cast<char>(uc);
|
|
220
219
|
}
|
|
221
220
|
|
|
222
221
|
if(uc < 52)
|
|
223
222
|
{
|
|
224
|
-
return 'a' + (uc - 26
|
|
223
|
+
return 'a' + static_cast<char>(uc) - 26;
|
|
225
224
|
}
|
|
226
225
|
|
|
227
226
|
if(uc < 62)
|
|
228
227
|
{
|
|
229
|
-
return '0' + (uc - 52
|
|
228
|
+
return '0' + static_cast<char>(uc) - 52;
|
|
230
229
|
}
|
|
231
230
|
|
|
232
231
|
if(uc == 62)
|
|
@@ -242,17 +241,17 @@ IceInternal::Base64::decode(char c)
|
|
|
242
241
|
{
|
|
243
242
|
if(c >= 'A' && c <= 'Z')
|
|
244
243
|
{
|
|
245
|
-
return c - 'A';
|
|
244
|
+
return static_cast<unsigned char>(c - 'A');
|
|
246
245
|
}
|
|
247
246
|
|
|
248
247
|
if(c >= 'a' && c <= 'z')
|
|
249
248
|
{
|
|
250
|
-
return c - 'a' + 26;
|
|
249
|
+
return static_cast<unsigned char>(c - 'a' + 26);
|
|
251
250
|
}
|
|
252
251
|
|
|
253
252
|
if(c >= '0' && c <= '9')
|
|
254
253
|
{
|
|
255
|
-
return c - '0' + 52;
|
|
254
|
+
return static_cast<unsigned char>(c - '0' + 52);
|
|
256
255
|
}
|
|
257
256
|
|
|
258
257
|
if(c == '+')
|
|
@@ -76,7 +76,7 @@ BatchRequestQueue::BatchRequestQueue(const InstancePtr& instance, bool datagram)
|
|
|
76
76
|
if(_maxSize > 0 && datagram)
|
|
77
77
|
{
|
|
78
78
|
const Ice::InitializationData& initData = instance->initializationData();
|
|
79
|
-
size_t udpSndSize = initData.properties->getPropertyAsIntWithDefault("Ice.UDP.SndSize", 65535 - udpOverhead);
|
|
79
|
+
size_t udpSndSize = static_cast<size_t>(initData.properties->getPropertyAsIntWithDefault("Ice.UDP.SndSize", 65535 - udpOverhead));
|
|
80
80
|
if(udpSndSize < _maxSize)
|
|
81
81
|
{
|
|
82
82
|
_maxSize = udpSndSize;
|
|
@@ -27,8 +27,8 @@ IceInternal::Buffer::Container::Container() :
|
|
|
27
27
|
|
|
28
28
|
IceInternal::Buffer::Container::Container(const_iterator beg, const_iterator end) :
|
|
29
29
|
_buf(const_cast<iterator>(beg)),
|
|
30
|
-
_size(end - beg),
|
|
31
|
-
_capacity(end - beg),
|
|
30
|
+
_size(static_cast<size_t>(end - beg)),
|
|
31
|
+
_capacity(static_cast<size_t>(end - beg)),
|
|
32
32
|
_shrinkCounter(0),
|
|
33
33
|
_owned(false)
|
|
34
34
|
{
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
# if ICE_INT_VERSION / 100 != 307
|
|
35
35
|
# error Ice version mismatch!
|
|
36
36
|
# endif
|
|
37
|
-
# if ICE_INT_VERSION % 100
|
|
37
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
38
38
|
# error Beta header file detected
|
|
39
39
|
# endif
|
|
40
|
-
# if ICE_INT_VERSION % 100 <
|
|
40
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
41
41
|
# error Ice patch level mismatch!
|
|
42
42
|
# endif
|
|
43
43
|
#endif
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -38,10 +38,10 @@
|
|
|
38
38
|
# if ICE_INT_VERSION / 100 != 307
|
|
39
39
|
# error Ice version mismatch!
|
|
40
40
|
# endif
|
|
41
|
-
# if ICE_INT_VERSION % 100
|
|
41
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
42
42
|
# error Beta header file detected
|
|
43
43
|
# endif
|
|
44
|
-
# if ICE_INT_VERSION % 100 <
|
|
44
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
45
45
|
# error Ice patch level mismatch!
|
|
46
46
|
# endif
|
|
47
47
|
#endif
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
# if ICE_INT_VERSION / 100 != 307
|
|
33
33
|
# error Ice version mismatch!
|
|
34
34
|
# endif
|
|
35
|
-
# if ICE_INT_VERSION % 100
|
|
35
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
36
36
|
# error Beta header file detected
|
|
37
37
|
# endif
|
|
38
|
-
# if ICE_INT_VERSION % 100 <
|
|
38
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
39
39
|
# error Ice patch level mismatch!
|
|
40
40
|
# endif
|
|
41
41
|
#endif
|