zeroc-ice 3.7.0 → 3.7.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (684) hide show
  1. checksums.yaml +4 -4
  2. data/ICE_LICENSE +1 -1
  3. data/bin/slice2rb +1 -1
  4. data/ext/Communicator.cpp +72 -2
  5. data/ext/Communicator.h +1 -1
  6. data/ext/Config.h +11 -1
  7. data/ext/Connection.cpp +22 -2
  8. data/ext/Connection.h +4 -1
  9. data/ext/Endpoint.cpp +1 -1
  10. data/ext/Endpoint.h +1 -1
  11. data/ext/ImplicitContext.cpp +1 -1
  12. data/ext/ImplicitContext.h +1 -1
  13. data/ext/Init.cpp +1 -1
  14. data/ext/Logger.cpp +1 -1
  15. data/ext/Logger.h +1 -1
  16. data/ext/Operation.cpp +1 -1
  17. data/ext/Operation.h +1 -1
  18. data/ext/Properties.cpp +1 -1
  19. data/ext/Properties.h +1 -1
  20. data/ext/Proxy.cpp +70 -1
  21. data/ext/Proxy.h +1 -1
  22. data/ext/Slice.cpp +1 -1
  23. data/ext/Slice.h +1 -1
  24. data/ext/Types.cpp +21 -5
  25. data/ext/Types.h +1 -1
  26. data/ext/Util.cpp +1 -1
  27. data/ext/Util.h +1 -1
  28. data/ext/ValueFactoryManager.cpp +2 -2
  29. data/ext/ValueFactoryManager.h +2 -2
  30. data/ext/ice/cpp/include/Ice/Application.h +234 -76
  31. data/ext/ice/cpp/include/Ice/AsyncResult.h +77 -1
  32. data/ext/ice/cpp/include/Ice/AsyncResultF.h +1 -1
  33. data/ext/ice/cpp/include/Ice/BatchRequestInterceptor.h +35 -2
  34. data/ext/ice/cpp/include/Ice/BatchRequestQueueF.h +1 -1
  35. data/ext/ice/cpp/include/Ice/Buffer.h +1 -1
  36. data/ext/ice/cpp/include/Ice/CommunicatorAsync.h +43 -1
  37. data/ext/ice/cpp/include/Ice/Comparable.h +81 -1
  38. data/ext/ice/cpp/include/Ice/Config.h +8 -1
  39. data/ext/ice/cpp/include/Ice/ConnectionAsync.h +97 -1
  40. data/ext/ice/cpp/include/Ice/ConnectionIF.h +3 -1
  41. data/ext/ice/cpp/include/Ice/ConsoleUtil.h +1 -1
  42. data/ext/ice/cpp/include/Ice/DefaultValueFactory.h +1 -1
  43. data/ext/ice/cpp/include/Ice/DispatchInterceptor.h +17 -2
  44. data/ext/ice/cpp/include/Ice/Dispatcher.h +22 -2
  45. data/ext/ice/cpp/include/Ice/DynamicLibrary.h +1 -1
  46. data/ext/ice/cpp/include/Ice/DynamicLibraryF.h +1 -1
  47. data/ext/ice/cpp/include/Ice/Exception.h +57 -15
  48. data/ext/ice/cpp/include/Ice/ExceptionHelpers.h +19 -1
  49. data/ext/ice/cpp/include/Ice/FactoryTable.h +12 -2
  50. data/ext/ice/cpp/include/Ice/FactoryTableInit.h +1 -1
  51. data/ext/ice/cpp/include/Ice/Format.h +13 -14
  52. data/ext/ice/cpp/include/Ice/Functional.h +6 -1
  53. data/ext/ice/cpp/include/Ice/GCObject.h +1 -1
  54. data/ext/ice/cpp/include/Ice/Handle.h +1 -1
  55. data/ext/ice/cpp/include/Ice/Ice.h +1 -1
  56. data/ext/ice/cpp/include/Ice/IconvStringConverter.h +38 -3
  57. data/ext/ice/cpp/include/Ice/Incoming.h +15 -2
  58. data/ext/ice/cpp/include/Ice/IncomingAsync.h +37 -4
  59. data/ext/ice/cpp/include/Ice/IncomingAsyncF.h +1 -1
  60. data/ext/ice/cpp/include/Ice/Initialize.h +764 -98
  61. data/ext/ice/cpp/include/Ice/InputStream.h +637 -112
  62. data/ext/ice/cpp/include/Ice/InstanceF.h +1 -1
  63. data/ext/ice/cpp/include/Ice/InterfaceByValue.h +17 -1
  64. data/ext/ice/cpp/include/Ice/LocalObject.h +5 -1
  65. data/ext/ice/cpp/include/Ice/LocalObjectF.h +1 -1
  66. data/ext/ice/cpp/include/Ice/LoggerUtil.h +37 -6
  67. data/ext/ice/cpp/include/Ice/MetricsAdminI.h +3 -1
  68. data/ext/ice/cpp/include/Ice/MetricsFunctional.h +3 -1
  69. data/ext/ice/cpp/include/Ice/MetricsObserverI.h +3 -1
  70. data/ext/ice/cpp/include/Ice/NativePropertiesAdmin.h +46 -23
  71. data/ext/ice/cpp/include/Ice/Object.h +338 -47
  72. data/ext/ice/cpp/include/Ice/ObjectF.h +5 -1
  73. data/ext/ice/cpp/include/Ice/ObserverHelper.h +1 -1
  74. data/ext/ice/cpp/include/Ice/Optional.h +22 -6
  75. data/ext/ice/cpp/include/Ice/OutgoingAsync.h +15 -1
  76. data/ext/ice/cpp/include/Ice/OutgoingAsyncF.h +1 -1
  77. data/ext/ice/cpp/include/Ice/OutputStream.h +436 -92
  78. data/ext/ice/cpp/include/Ice/Protocol.h +31 -1
  79. data/ext/ice/cpp/include/Ice/Proxy.h +2244 -190
  80. data/ext/ice/cpp/include/Ice/ProxyF.h +3 -1
  81. data/ext/ice/cpp/include/Ice/ProxyFactoryF.h +1 -1
  82. data/ext/ice/cpp/include/Ice/ProxyHandle.h +10 -1
  83. data/ext/ice/cpp/include/Ice/ReferenceF.h +1 -1
  84. data/ext/ice/cpp/include/Ice/RegisterPlugins.h +67 -9
  85. data/ext/ice/cpp/include/Ice/RequestHandlerF.h +1 -1
  86. data/ext/ice/cpp/include/Ice/ResponseHandlerF.h +1 -1
  87. data/ext/ice/cpp/include/Ice/SHA1.h +1 -1
  88. data/ext/ice/cpp/include/Ice/ServantManagerF.h +1 -1
  89. data/ext/ice/cpp/include/Ice/Service.h +267 -138
  90. data/ext/ice/cpp/include/Ice/SliceChecksums.h +5 -1
  91. data/ext/ice/cpp/include/Ice/SlicedData.h +80 -33
  92. data/ext/ice/cpp/include/Ice/SlicedDataF.h +4 -1
  93. data/ext/ice/cpp/include/Ice/StreamHelpers.h +324 -116
  94. data/ext/ice/cpp/include/Ice/StringConverter.h +32 -1
  95. data/ext/ice/cpp/include/Ice/ThreadPoolF.h +1 -1
  96. data/ext/ice/cpp/include/Ice/UUID.h +2 -1
  97. data/ext/ice/cpp/include/Ice/UniquePtr.h +2 -2
  98. data/ext/ice/cpp/include/Ice/UniqueRef.h +6 -2
  99. data/ext/ice/cpp/include/Ice/UserExceptionFactory.h +6 -1
  100. data/ext/ice/cpp/include/Ice/Value.h +41 -1
  101. data/ext/ice/cpp/include/Ice/ValueF.h +3 -1
  102. data/ext/ice/cpp/include/IceSSL/Config.h +1 -1
  103. data/ext/ice/cpp/include/IceSSL/IceSSL.h +1 -1
  104. data/ext/ice/cpp/include/IceSSL/OpenSSL.h +75 -53
  105. data/ext/ice/cpp/include/IceSSL/Plugin.h +323 -218
  106. data/ext/ice/cpp/include/IceSSL/SChannel.h +34 -27
  107. data/ext/ice/cpp/include/IceSSL/SecureTransport.h +35 -28
  108. data/ext/ice/cpp/include/IceSSL/UWP.h +33 -24
  109. data/ext/ice/cpp/include/IceUtil/Atomic.h +1 -1
  110. data/ext/ice/cpp/include/IceUtil/Cond.h +1 -1
  111. data/ext/ice/cpp/include/IceUtil/Config.h +11 -3
  112. data/ext/ice/cpp/include/IceUtil/ConsoleUtil.h +1 -1
  113. data/ext/ice/cpp/include/IceUtil/CountDownLatch.h +1 -1
  114. data/ext/ice/cpp/include/IceUtil/CtrlCHandler.h +59 -31
  115. data/ext/ice/cpp/include/IceUtil/DisableWarnings.h +1 -1
  116. data/ext/ice/cpp/include/IceUtil/Exception.h +1 -1
  117. data/ext/ice/cpp/include/IceUtil/FileUtil.h +1 -1
  118. data/ext/ice/cpp/include/IceUtil/Functional.h +1 -1
  119. data/ext/ice/cpp/include/IceUtil/Handle.h +1 -1
  120. data/ext/ice/cpp/include/IceUtil/IceUtil.h +1 -1
  121. data/ext/ice/cpp/include/IceUtil/InputUtil.h +1 -1
  122. data/ext/ice/cpp/include/IceUtil/Iterator.h +1 -1
  123. data/ext/ice/cpp/include/IceUtil/Lock.h +1 -1
  124. data/ext/ice/cpp/include/IceUtil/Monitor.h +1 -1
  125. data/ext/ice/cpp/include/IceUtil/Mutex.h +2 -5
  126. data/ext/ice/cpp/include/IceUtil/MutexProtocol.h +1 -1
  127. data/ext/ice/cpp/include/IceUtil/MutexPtrLock.h +1 -1
  128. data/ext/ice/cpp/include/IceUtil/MutexPtrTryLock.h +1 -1
  129. data/ext/ice/cpp/include/IceUtil/Optional.h +95 -1
  130. data/ext/ice/cpp/include/IceUtil/Options.h +1 -1
  131. data/ext/ice/cpp/include/IceUtil/OutputUtil.h +1 -1
  132. data/ext/ice/cpp/include/IceUtil/PopDisableWarnings.h +1 -1
  133. data/ext/ice/cpp/include/IceUtil/PushDisableWarnings.h +1 -1
  134. data/ext/ice/cpp/include/IceUtil/Random.h +1 -1
  135. data/ext/ice/cpp/include/IceUtil/RecMutex.h +1 -1
  136. data/ext/ice/cpp/include/IceUtil/ResourceConfig.h +4 -4
  137. data/ext/ice/cpp/include/IceUtil/ScannerConfig.h +5 -3
  138. data/ext/ice/cpp/include/IceUtil/ScopedArray.h +1 -1
  139. data/ext/ice/cpp/include/IceUtil/Shared.h +1 -1
  140. data/ext/ice/cpp/include/IceUtil/StopWatch.h +1 -1
  141. data/ext/ice/cpp/include/IceUtil/StringConverter.h +106 -86
  142. data/ext/ice/cpp/include/IceUtil/StringUtil.h +1 -1
  143. data/ext/ice/cpp/include/IceUtil/Thread.h +1 -1
  144. data/ext/ice/cpp/include/IceUtil/ThreadException.h +1 -1
  145. data/ext/ice/cpp/include/IceUtil/Time.h +1 -1
  146. data/ext/ice/cpp/include/IceUtil/Timer.h +5 -1
  147. data/ext/ice/cpp/include/IceUtil/UUID.h +5 -1
  148. data/ext/ice/cpp/include/IceUtil/UndefSysMacros.h +1 -1
  149. data/ext/ice/cpp/include/generated/Ice/BuiltinSequences.h +80 -20
  150. data/ext/ice/cpp/include/generated/Ice/Communicator.h +927 -130
  151. data/ext/ice/cpp/include/generated/Ice/CommunicatorF.h +13 -5
  152. data/ext/ice/cpp/include/generated/Ice/Connection.h +990 -194
  153. data/ext/ice/cpp/include/generated/Ice/ConnectionF.h +21 -9
  154. data/ext/ice/cpp/include/generated/Ice/Current.h +180 -17
  155. data/ext/ice/cpp/include/generated/Ice/Endpoint.h +484 -118
  156. data/ext/ice/cpp/include/generated/Ice/EndpointF.h +41 -17
  157. data/ext/ice/cpp/include/generated/Ice/EndpointTypes.h +29 -3
  158. data/ext/ice/cpp/include/generated/Ice/FacetMap.h +11 -5
  159. data/ext/ice/cpp/include/generated/Ice/Identity.h +56 -7
  160. data/ext/ice/cpp/include/generated/Ice/ImplicitContext.h +150 -28
  161. data/ext/ice/cpp/include/generated/Ice/ImplicitContextF.h +13 -5
  162. data/ext/ice/cpp/include/generated/Ice/Instrumentation.h +629 -83
  163. data/ext/ice/cpp/include/generated/Ice/InstrumentationF.h +19 -7
  164. data/ext/ice/cpp/include/generated/Ice/LocalException.h +5104 -794
  165. data/ext/ice/cpp/include/generated/Ice/Locator.h +2222 -443
  166. data/ext/ice/cpp/include/generated/Ice/LocatorF.h +27 -9
  167. data/ext/ice/cpp/include/generated/Ice/Logger.h +104 -26
  168. data/ext/ice/cpp/include/generated/Ice/LoggerF.h +13 -5
  169. data/ext/ice/cpp/include/generated/Ice/Metrics.h +2534 -455
  170. data/ext/ice/cpp/include/generated/Ice/ObjectAdapter.h +1004 -126
  171. data/ext/ice/cpp/include/generated/Ice/ObjectAdapterF.h +13 -5
  172. data/ext/ice/cpp/include/generated/Ice/ObjectFactory.h +72 -12
  173. data/ext/ice/cpp/include/generated/Ice/Plugin.h +142 -28
  174. data/ext/ice/cpp/include/generated/Ice/PluginF.h +17 -7
  175. data/ext/ice/cpp/include/generated/Ice/Process.h +511 -71
  176. data/ext/ice/cpp/include/generated/Ice/ProcessF.h +18 -6
  177. data/ext/ice/cpp/include/generated/Ice/Properties.h +306 -58
  178. data/ext/ice/cpp/include/generated/Ice/PropertiesAdmin.h +737 -121
  179. data/ext/ice/cpp/include/generated/Ice/PropertiesF.h +22 -8
  180. data/ext/ice/cpp/include/generated/Ice/RemoteLogger.h +1526 -279
  181. data/ext/ice/cpp/include/generated/Ice/Router.h +1009 -198
  182. data/ext/ice/cpp/include/generated/Ice/RouterF.h +18 -6
  183. data/ext/ice/cpp/include/generated/Ice/ServantLocator.h +174 -18
  184. data/ext/ice/cpp/include/generated/Ice/ServantLocatorF.h +13 -5
  185. data/ext/ice/cpp/include/generated/Ice/SliceChecksumDict.h +13 -3
  186. data/ext/ice/cpp/include/generated/Ice/ValueFactory.h +177 -23
  187. data/ext/ice/cpp/include/generated/Ice/Version.h +43 -13
  188. data/ext/ice/cpp/include/generated/IceSSL/ConnectionInfo.h +71 -15
  189. data/ext/ice/cpp/include/generated/IceSSL/ConnectionInfoF.h +13 -5
  190. data/ext/ice/cpp/include/generated/IceSSL/EndpointInfo.h +39 -9
  191. data/ext/ice/cpp/src/Ice/ACM.cpp +12 -3
  192. data/ext/ice/cpp/src/Ice/ACM.h +1 -1
  193. data/ext/ice/cpp/src/Ice/ACMF.h +1 -1
  194. data/ext/ice/cpp/src/Ice/Acceptor.cpp +1 -1
  195. data/ext/ice/cpp/src/Ice/Acceptor.h +1 -1
  196. data/ext/ice/cpp/src/Ice/AcceptorF.h +1 -1
  197. data/ext/ice/cpp/src/Ice/ArgVector.cpp +1 -1
  198. data/ext/ice/cpp/src/Ice/ArgVector.h +1 -1
  199. data/ext/ice/cpp/src/Ice/AsyncResult.cpp +1 -1
  200. data/ext/ice/cpp/src/Ice/Base64.cpp +1 -1
  201. data/ext/ice/cpp/src/Ice/Base64.h +1 -1
  202. data/ext/ice/cpp/src/Ice/BatchRequestQueue.cpp +1 -1
  203. data/ext/ice/cpp/src/Ice/BatchRequestQueue.h +1 -1
  204. data/ext/ice/cpp/src/Ice/Buffer.cpp +1 -1
  205. data/ext/ice/cpp/src/Ice/BuiltinSequences.cpp +3 -3
  206. data/ext/ice/cpp/src/Ice/CollocatedRequestHandler.cpp +1 -1
  207. data/ext/ice/cpp/src/Ice/CollocatedRequestHandler.h +1 -1
  208. data/ext/ice/cpp/src/Ice/Communicator.cpp +6 -4
  209. data/ext/ice/cpp/src/Ice/CommunicatorF.cpp +3 -3
  210. data/ext/ice/cpp/src/Ice/CommunicatorI.cpp +34 -13
  211. data/ext/ice/cpp/src/Ice/CommunicatorI.h +10 -10
  212. data/ext/ice/cpp/src/Ice/Cond.cpp +1 -1
  213. data/ext/ice/cpp/src/Ice/ConnectRequestHandler.cpp +11 -6
  214. data/ext/ice/cpp/src/Ice/ConnectRequestHandler.h +1 -1
  215. data/ext/ice/cpp/src/Ice/ConnectRequestHandlerF.h +1 -1
  216. data/ext/ice/cpp/src/Ice/Connection.cpp +27 -11
  217. data/ext/ice/cpp/src/Ice/ConnectionF.cpp +3 -3
  218. data/ext/ice/cpp/src/Ice/ConnectionFactory.cpp +24 -19
  219. data/ext/ice/cpp/src/Ice/ConnectionFactory.h +1 -1
  220. data/ext/ice/cpp/src/Ice/ConnectionFactoryF.h +1 -1
  221. data/ext/ice/cpp/src/Ice/ConnectionI.cpp +45 -37
  222. data/ext/ice/cpp/src/Ice/ConnectionI.h +10 -8
  223. data/ext/ice/cpp/src/Ice/ConnectionRequestHandler.cpp +1 -1
  224. data/ext/ice/cpp/src/Ice/ConnectionRequestHandler.h +1 -1
  225. data/ext/ice/cpp/src/Ice/Connector.cpp +1 -1
  226. data/ext/ice/cpp/src/Ice/Connector.h +1 -1
  227. data/ext/ice/cpp/src/Ice/ConnectorF.h +1 -1
  228. data/ext/ice/cpp/src/Ice/CountDownLatch.cpp +1 -1
  229. data/ext/ice/cpp/src/Ice/Current.cpp +3 -3
  230. data/ext/ice/cpp/src/Ice/DefaultsAndOverrides.cpp +5 -7
  231. data/ext/ice/cpp/src/Ice/DefaultsAndOverrides.h +1 -1
  232. data/ext/ice/cpp/src/Ice/DefaultsAndOverridesF.h +1 -1
  233. data/ext/ice/cpp/src/Ice/DispatchInterceptor.cpp +1 -1
  234. data/ext/ice/cpp/src/Ice/DynamicLibrary.cpp +1 -1
  235. data/ext/ice/cpp/src/Ice/Endpoint.cpp +24 -10
  236. data/ext/ice/cpp/src/Ice/EndpointF.cpp +3 -3
  237. data/ext/ice/cpp/src/Ice/EndpointFactory.cpp +1 -1
  238. data/ext/ice/cpp/src/Ice/EndpointFactory.h +1 -1
  239. data/ext/ice/cpp/src/Ice/EndpointFactoryF.h +1 -1
  240. data/ext/ice/cpp/src/Ice/EndpointFactoryManager.cpp +7 -13
  241. data/ext/ice/cpp/src/Ice/EndpointFactoryManager.h +1 -1
  242. data/ext/ice/cpp/src/Ice/EndpointFactoryManagerF.h +1 -1
  243. data/ext/ice/cpp/src/Ice/EndpointI.cpp +2 -2
  244. data/ext/ice/cpp/src/Ice/EndpointI.h +5 -5
  245. data/ext/ice/cpp/src/Ice/EndpointIF.h +1 -1
  246. data/ext/ice/cpp/src/Ice/EndpointTypes.cpp +3 -3
  247. data/ext/ice/cpp/src/Ice/EventHandler.cpp +1 -1
  248. data/ext/ice/cpp/src/Ice/EventHandler.h +1 -1
  249. data/ext/ice/cpp/src/Ice/EventHandlerF.h +1 -1
  250. data/ext/ice/cpp/src/Ice/Exception.cpp +1 -1
  251. data/ext/ice/cpp/src/Ice/FacetMap.cpp +3 -3
  252. data/ext/ice/cpp/src/Ice/FactoryTable.cpp +1 -1
  253. data/ext/ice/cpp/src/Ice/FactoryTableInit.cpp +1 -1
  254. data/ext/ice/cpp/src/Ice/GCObject.cpp +1 -1
  255. data/ext/ice/cpp/src/Ice/HashUtil.h +1 -1
  256. data/ext/ice/cpp/src/Ice/HttpParser.cpp +1 -1
  257. data/ext/ice/cpp/src/Ice/HttpParser.h +1 -1
  258. data/ext/ice/cpp/src/Ice/IPEndpointI.cpp +24 -29
  259. data/ext/ice/cpp/src/Ice/IPEndpointI.h +5 -5
  260. data/ext/ice/cpp/src/Ice/IPEndpointIF.h +1 -1
  261. data/ext/ice/cpp/src/Ice/IconvStringConverter.cpp +1 -1
  262. data/ext/ice/cpp/src/Ice/Identity.cpp +3 -3
  263. data/ext/ice/cpp/src/Ice/ImplicitContext.cpp +6 -4
  264. data/ext/ice/cpp/src/Ice/ImplicitContextF.cpp +3 -3
  265. data/ext/ice/cpp/src/Ice/ImplicitContextI.cpp +2 -13
  266. data/ext/ice/cpp/src/Ice/ImplicitContextI.h +1 -1
  267. data/ext/ice/cpp/src/Ice/Incoming.cpp +1 -1
  268. data/ext/ice/cpp/src/Ice/IncomingAsync.cpp +1 -1
  269. data/ext/ice/cpp/src/Ice/IncomingRequest.h +1 -1
  270. data/ext/ice/cpp/src/Ice/Initialize.cpp +10 -16
  271. data/ext/ice/cpp/src/Ice/InputStream.cpp +1 -1
  272. data/ext/ice/cpp/src/Ice/Instance.cpp +13 -34
  273. data/ext/ice/cpp/src/Ice/Instance.h +1 -1
  274. data/ext/ice/cpp/src/Ice/Instrumentation.cpp +33 -13
  275. data/ext/ice/cpp/src/Ice/InstrumentationF.cpp +3 -3
  276. data/ext/ice/cpp/src/Ice/InstrumentationI.cpp +1 -1
  277. data/ext/ice/cpp/src/Ice/InstrumentationI.h +1 -1
  278. data/ext/ice/cpp/src/Ice/LocalException.cpp +279 -279
  279. data/ext/ice/cpp/src/Ice/LocalObject.cpp +1 -1
  280. data/ext/ice/cpp/src/Ice/Locator.cpp +287 -174
  281. data/ext/ice/cpp/src/Ice/LocatorF.cpp +3 -3
  282. data/ext/ice/cpp/src/Ice/LocatorInfo.cpp +4 -9
  283. data/ext/ice/cpp/src/Ice/LocatorInfo.h +1 -1
  284. data/ext/ice/cpp/src/Ice/LocatorInfoF.h +1 -1
  285. data/ext/ice/cpp/src/Ice/Logger.cpp +6 -4
  286. data/ext/ice/cpp/src/Ice/LoggerAdminI.cpp +1 -1
  287. data/ext/ice/cpp/src/Ice/LoggerAdminI.h +1 -1
  288. data/ext/ice/cpp/src/Ice/LoggerF.cpp +3 -3
  289. data/ext/ice/cpp/src/Ice/LoggerI.cpp +1 -1
  290. data/ext/ice/cpp/src/Ice/LoggerI.h +1 -1
  291. data/ext/ice/cpp/src/Ice/LoggerUtil.cpp +1 -1
  292. data/ext/ice/cpp/src/Ice/Metrics.cpp +297 -109
  293. data/ext/ice/cpp/src/Ice/MetricsAdminI.cpp +2 -7
  294. data/ext/ice/cpp/src/Ice/MetricsObserverI.cpp +1 -1
  295. data/ext/ice/cpp/src/Ice/Network.cpp +188 -225
  296. data/ext/ice/cpp/src/Ice/Network.h +3 -12
  297. data/ext/ice/cpp/src/Ice/NetworkF.h +1 -1
  298. data/ext/ice/cpp/src/Ice/NetworkProxy.cpp +1 -1
  299. data/ext/ice/cpp/src/Ice/NetworkProxy.h +1 -1
  300. data/ext/ice/cpp/src/Ice/NetworkProxyF.h +1 -1
  301. data/ext/ice/cpp/src/Ice/Object.cpp +7 -4
  302. data/ext/ice/cpp/src/Ice/ObjectAdapter.cpp +6 -4
  303. data/ext/ice/cpp/src/Ice/ObjectAdapterF.cpp +3 -3
  304. data/ext/ice/cpp/src/Ice/ObjectAdapterFactory.cpp +53 -19
  305. data/ext/ice/cpp/src/Ice/ObjectAdapterFactory.h +1 -1
  306. data/ext/ice/cpp/src/Ice/ObjectAdapterFactoryF.h +1 -1
  307. data/ext/ice/cpp/src/Ice/ObjectAdapterI.cpp +116 -150
  308. data/ext/ice/cpp/src/Ice/ObjectAdapterI.h +11 -11
  309. data/ext/ice/cpp/src/Ice/ObjectFactory.cpp +6 -4
  310. data/ext/ice/cpp/src/Ice/ObserverHelper.cpp +1 -1
  311. data/ext/ice/cpp/src/Ice/OpaqueEndpointI.cpp +25 -42
  312. data/ext/ice/cpp/src/Ice/OpaqueEndpointI.h +2 -2
  313. data/ext/ice/cpp/src/Ice/OutgoingAsync.cpp +1 -1
  314. data/ext/ice/cpp/src/Ice/OutputStream.cpp +1 -1
  315. data/ext/ice/cpp/src/Ice/Plugin.cpp +9 -5
  316. data/ext/ice/cpp/src/Ice/PluginF.cpp +3 -3
  317. data/ext/ice/cpp/src/Ice/PluginManagerI.cpp +15 -34
  318. data/ext/ice/cpp/src/Ice/PluginManagerI.h +3 -3
  319. data/ext/ice/cpp/src/Ice/Process.cpp +69 -40
  320. data/ext/ice/cpp/src/Ice/ProcessF.cpp +3 -3
  321. data/ext/ice/cpp/src/Ice/Properties.cpp +6 -4
  322. data/ext/ice/cpp/src/Ice/PropertiesAdmin.cpp +89 -54
  323. data/ext/ice/cpp/src/Ice/PropertiesAdminI.cpp +1 -1
  324. data/ext/ice/cpp/src/Ice/PropertiesAdminI.h +1 -1
  325. data/ext/ice/cpp/src/Ice/PropertiesF.cpp +3 -3
  326. data/ext/ice/cpp/src/Ice/PropertiesI.cpp +15 -21
  327. data/ext/ice/cpp/src/Ice/PropertiesI.h +10 -10
  328. data/ext/ice/cpp/src/Ice/PropertyNames.cpp +4 -2
  329. data/ext/ice/cpp/src/Ice/PropertyNames.h +2 -2
  330. data/ext/ice/cpp/src/Ice/Protocol.cpp +5 -13
  331. data/ext/ice/cpp/src/Ice/ProtocolInstance.cpp +1 -1
  332. data/ext/ice/cpp/src/Ice/ProtocolInstance.h +1 -1
  333. data/ext/ice/cpp/src/Ice/ProtocolInstanceF.h +1 -1
  334. data/ext/ice/cpp/src/Ice/ProtocolPluginFacade.cpp +1 -1
  335. data/ext/ice/cpp/src/Ice/ProtocolPluginFacade.h +1 -1
  336. data/ext/ice/cpp/src/Ice/ProtocolPluginFacadeF.h +1 -1
  337. data/ext/ice/cpp/src/Ice/Proxy.cpp +46 -1
  338. data/ext/ice/cpp/src/Ice/ProxyFactory.cpp +1 -1
  339. data/ext/ice/cpp/src/Ice/ProxyFactory.h +1 -1
  340. data/ext/ice/cpp/src/Ice/Reference.cpp +56 -6
  341. data/ext/ice/cpp/src/Ice/Reference.h +13 -2
  342. data/ext/ice/cpp/src/Ice/ReferenceFactory.cpp +51 -90
  343. data/ext/ice/cpp/src/Ice/ReferenceFactory.h +1 -1
  344. data/ext/ice/cpp/src/Ice/ReferenceFactoryF.h +1 -1
  345. data/ext/ice/cpp/src/Ice/RegisterPluginsInit.cpp +1 -1
  346. data/ext/ice/cpp/src/Ice/RegisterPluginsInit.h +1 -1
  347. data/ext/ice/cpp/src/Ice/RemoteLogger.cpp +203 -117
  348. data/ext/ice/cpp/src/Ice/ReplyStatus.h +1 -1
  349. data/ext/ice/cpp/src/Ice/RequestHandler.cpp +1 -1
  350. data/ext/ice/cpp/src/Ice/RequestHandler.h +1 -1
  351. data/ext/ice/cpp/src/Ice/RequestHandlerFactory.cpp +1 -1
  352. data/ext/ice/cpp/src/Ice/RequestHandlerFactory.h +1 -1
  353. data/ext/ice/cpp/src/Ice/ResponseHandler.cpp +1 -1
  354. data/ext/ice/cpp/src/Ice/ResponseHandler.h +1 -1
  355. data/ext/ice/cpp/src/Ice/RetryQueue.cpp +1 -1
  356. data/ext/ice/cpp/src/Ice/RetryQueue.h +1 -1
  357. data/ext/ice/cpp/src/Ice/RetryQueueF.h +1 -1
  358. data/ext/ice/cpp/src/Ice/Router.cpp +167 -89
  359. data/ext/ice/cpp/src/Ice/RouterF.cpp +3 -3
  360. data/ext/ice/cpp/src/Ice/RouterInfo.cpp +6 -28
  361. data/ext/ice/cpp/src/Ice/RouterInfo.h +1 -3
  362. data/ext/ice/cpp/src/Ice/RouterInfoF.h +1 -1
  363. data/ext/ice/cpp/src/Ice/SHA1.cpp +1 -1
  364. data/ext/ice/cpp/src/Ice/Selector.cpp +19 -26
  365. data/ext/ice/cpp/src/Ice/Selector.h +1 -1
  366. data/ext/ice/cpp/src/Ice/ServantLocator.cpp +6 -4
  367. data/ext/ice/cpp/src/Ice/ServantLocatorF.cpp +3 -3
  368. data/ext/ice/cpp/src/Ice/ServantManager.cpp +15 -31
  369. data/ext/ice/cpp/src/Ice/ServantManager.h +1 -1
  370. data/ext/ice/cpp/src/Ice/SharedContext.h +1 -1
  371. data/ext/ice/cpp/src/Ice/SliceChecksumDict.cpp +3 -3
  372. data/ext/ice/cpp/src/Ice/SliceChecksums.cpp +1 -1
  373. data/ext/ice/cpp/src/Ice/SlicedData.cpp +1 -1
  374. data/ext/ice/cpp/src/Ice/StreamSocket.cpp +32 -52
  375. data/ext/ice/cpp/src/Ice/StreamSocket.h +1 -1
  376. data/ext/ice/cpp/src/Ice/StringConverterPlugin.cpp +10 -1
  377. data/ext/ice/cpp/src/Ice/StringUtil.h +1 -1
  378. data/ext/ice/cpp/src/Ice/SysLoggerI.cpp +1 -1
  379. data/ext/ice/cpp/src/Ice/SysLoggerI.h +1 -1
  380. data/ext/ice/cpp/src/Ice/TcpAcceptor.cpp +5 -13
  381. data/ext/ice/cpp/src/Ice/TcpAcceptor.h +1 -1
  382. data/ext/ice/cpp/src/Ice/TcpConnector.cpp +1 -1
  383. data/ext/ice/cpp/src/Ice/TcpConnector.h +1 -1
  384. data/ext/ice/cpp/src/Ice/TcpEndpointI.cpp +8 -11
  385. data/ext/ice/cpp/src/Ice/TcpEndpointI.h +2 -2
  386. data/ext/ice/cpp/src/Ice/TcpTransceiver.cpp +1 -1
  387. data/ext/ice/cpp/src/Ice/TcpTransceiver.h +1 -1
  388. data/ext/ice/cpp/src/Ice/Thread.cpp +1 -1
  389. data/ext/ice/cpp/src/Ice/ThreadPool.cpp +13 -13
  390. data/ext/ice/cpp/src/Ice/ThreadPool.h +1 -1
  391. data/ext/ice/cpp/src/Ice/Timer.cpp +1 -1
  392. data/ext/ice/cpp/src/Ice/TraceLevels.cpp +1 -1
  393. data/ext/ice/cpp/src/Ice/TraceLevels.h +1 -1
  394. data/ext/ice/cpp/src/Ice/TraceLevelsF.h +1 -1
  395. data/ext/ice/cpp/src/Ice/TraceUtil.cpp +1 -1
  396. data/ext/ice/cpp/src/Ice/TraceUtil.h +1 -1
  397. data/ext/ice/cpp/src/Ice/Transceiver.cpp +1 -1
  398. data/ext/ice/cpp/src/Ice/Transceiver.h +1 -1
  399. data/ext/ice/cpp/src/Ice/TransceiverF.h +1 -1
  400. data/ext/ice/cpp/src/Ice/UdpConnector.cpp +1 -1
  401. data/ext/ice/cpp/src/Ice/UdpConnector.h +1 -1
  402. data/ext/ice/cpp/src/Ice/UdpEndpointI.cpp +19 -27
  403. data/ext/ice/cpp/src/Ice/UdpEndpointI.h +2 -2
  404. data/ext/ice/cpp/src/Ice/UdpTransceiver.cpp +17 -54
  405. data/ext/ice/cpp/src/Ice/UdpTransceiver.h +1 -1
  406. data/ext/ice/cpp/src/Ice/Value.cpp +1 -1
  407. data/ext/ice/cpp/src/Ice/ValueFactory.cpp +9 -5
  408. data/ext/ice/cpp/src/Ice/ValueFactoryManagerI.cpp +3 -6
  409. data/ext/ice/cpp/src/Ice/ValueFactoryManagerI.h +2 -2
  410. data/ext/ice/cpp/src/Ice/Version.cpp +3 -3
  411. data/ext/ice/cpp/src/Ice/VirtualShared.h +1 -1
  412. data/ext/ice/cpp/src/Ice/WSAcceptor.cpp +1 -1
  413. data/ext/ice/cpp/src/Ice/WSAcceptor.h +1 -1
  414. data/ext/ice/cpp/src/Ice/WSConnector.cpp +1 -1
  415. data/ext/ice/cpp/src/Ice/WSConnector.h +1 -1
  416. data/ext/ice/cpp/src/Ice/WSEndpoint.cpp +4 -5
  417. data/ext/ice/cpp/src/Ice/WSEndpoint.h +2 -2
  418. data/ext/ice/cpp/src/Ice/WSTransceiver.cpp +8 -9
  419. data/ext/ice/cpp/src/Ice/WSTransceiver.h +1 -1
  420. data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.cpp +85 -27
  421. data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.h +599 -113
  422. data/ext/ice/cpp/src/IceDiscovery/LocatorI.cpp +1 -1
  423. data/ext/ice/cpp/src/IceDiscovery/LocatorI.h +1 -1
  424. data/ext/ice/cpp/src/IceDiscovery/LookupI.cpp +1 -1
  425. data/ext/ice/cpp/src/IceDiscovery/LookupI.h +1 -1
  426. data/ext/ice/cpp/src/IceDiscovery/PluginI.cpp +1 -1
  427. data/ext/ice/cpp/src/IceDiscovery/PluginI.h +1 -1
  428. data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.cpp +70 -24
  429. data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.h +635 -69
  430. data/ext/ice/cpp/src/IceLocatorDiscovery/Plugin.h +1 -1
  431. data/ext/ice/cpp/src/IceLocatorDiscovery/PluginI.cpp +71 -9
  432. data/ext/ice/cpp/src/IceSSL/AcceptorI.cpp +2 -4
  433. data/ext/ice/cpp/src/IceSSL/AcceptorI.h +1 -1
  434. data/ext/ice/cpp/src/IceSSL/CertificateI.cpp +1 -1
  435. data/ext/ice/cpp/src/IceSSL/CertificateI.h +1 -1
  436. data/ext/ice/cpp/src/IceSSL/ConnectionInfo.cpp +6 -4
  437. data/ext/ice/cpp/src/IceSSL/ConnectionInfoF.cpp +3 -3
  438. data/ext/ice/cpp/src/IceSSL/ConnectorI.cpp +2 -4
  439. data/ext/ice/cpp/src/IceSSL/ConnectorI.h +1 -1
  440. data/ext/ice/cpp/src/IceSSL/EndpointI.cpp +2 -2
  441. data/ext/ice/cpp/src/IceSSL/EndpointI.h +2 -2
  442. data/ext/ice/cpp/src/IceSSL/EndpointInfo.cpp +6 -4
  443. data/ext/ice/cpp/src/IceSSL/Instance.cpp +1 -1
  444. data/ext/ice/cpp/src/IceSSL/Instance.h +1 -1
  445. data/ext/ice/cpp/src/IceSSL/InstanceF.h +1 -1
  446. data/ext/ice/cpp/src/IceSSL/OpenSSLCertificateI.cpp +1 -1
  447. data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.cpp +1 -1
  448. data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.h +1 -1
  449. data/ext/ice/cpp/src/IceSSL/OpenSSLEngineF.h +1 -1
  450. data/ext/ice/cpp/src/IceSSL/OpenSSLPluginI.cpp +1 -1
  451. data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.cpp +25 -62
  452. data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.h +1 -1
  453. data/ext/ice/cpp/src/IceSSL/OpenSSLUtil.cpp +1 -1
  454. data/ext/ice/cpp/src/IceSSL/OpenSSLUtil.h +1 -1
  455. data/ext/ice/cpp/src/IceSSL/PluginI.cpp +1 -1
  456. data/ext/ice/cpp/src/IceSSL/PluginI.h +1 -1
  457. data/ext/ice/cpp/src/IceSSL/RFC2253.cpp +1 -1
  458. data/ext/ice/cpp/src/IceSSL/RFC2253.h +1 -1
  459. data/ext/ice/cpp/src/IceSSL/SChannelCertificateI.cpp +1 -1
  460. data/ext/ice/cpp/src/IceSSL/SChannelEngine.cpp +1 -1
  461. data/ext/ice/cpp/src/IceSSL/SChannelEngine.h +1 -1
  462. data/ext/ice/cpp/src/IceSSL/SChannelEngineF.h +1 -1
  463. data/ext/ice/cpp/src/IceSSL/SChannelPluginI.cpp +1 -1
  464. data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.cpp +19 -27
  465. data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.h +1 -1
  466. data/ext/ice/cpp/src/IceSSL/SSLEngine.cpp +7 -16
  467. data/ext/ice/cpp/src/IceSSL/SSLEngine.h +1 -1
  468. data/ext/ice/cpp/src/IceSSL/SSLEngineF.h +1 -1
  469. data/ext/ice/cpp/src/IceSSL/SecureTransportCertificateI.cpp +1 -1
  470. data/ext/ice/cpp/src/IceSSL/SecureTransportEngine.cpp +1 -1
  471. data/ext/ice/cpp/src/IceSSL/SecureTransportEngine.h +1 -1
  472. data/ext/ice/cpp/src/IceSSL/SecureTransportEngineF.h +1 -1
  473. data/ext/ice/cpp/src/IceSSL/SecureTransportPluginI.cpp +1 -1
  474. data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.cpp +1 -1
  475. data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.h +1 -1
  476. data/ext/ice/cpp/src/IceSSL/SecureTransportUtil.cpp +7 -10
  477. data/ext/ice/cpp/src/IceSSL/SecureTransportUtil.h +1 -1
  478. data/ext/ice/cpp/src/IceSSL/TrustManager.cpp +4 -5
  479. data/ext/ice/cpp/src/IceSSL/TrustManager.h +1 -1
  480. data/ext/ice/cpp/src/IceSSL/TrustManagerF.h +1 -1
  481. data/ext/ice/cpp/src/IceSSL/UWPCertificateI.cpp +1 -1
  482. data/ext/ice/cpp/src/IceSSL/UWPEngine.cpp +1 -1
  483. data/ext/ice/cpp/src/IceSSL/UWPEngine.h +1 -1
  484. data/ext/ice/cpp/src/IceSSL/UWPEngineF.h +1 -1
  485. data/ext/ice/cpp/src/IceSSL/UWPPluginI.cpp +1 -1
  486. data/ext/ice/cpp/src/IceSSL/UWPTransceiverI.cpp +1 -1
  487. data/ext/ice/cpp/src/IceSSL/UWPTransceiverI.h +1 -1
  488. data/ext/ice/cpp/src/IceSSL/Util.cpp +1 -1
  489. data/ext/ice/cpp/src/IceSSL/Util.h +1 -1
  490. data/ext/ice/cpp/src/IceUtil/ConsoleUtil.cpp +1 -1
  491. data/ext/ice/cpp/src/IceUtil/ConvertUTF.cpp +1 -1
  492. data/ext/ice/cpp/src/IceUtil/ConvertUTF.h +1 -1
  493. data/ext/ice/cpp/src/IceUtil/CtrlCHandler.cpp +1 -1
  494. data/ext/ice/cpp/src/IceUtil/FileUtil.cpp +5 -5
  495. data/ext/ice/cpp/src/IceUtil/InputUtil.cpp +1 -1
  496. data/ext/ice/cpp/src/IceUtil/MutexProtocol.cpp +1 -1
  497. data/ext/ice/cpp/src/IceUtil/Options.cpp +1 -1
  498. data/ext/ice/cpp/src/IceUtil/OutputUtil.cpp +1 -1
  499. data/ext/ice/cpp/src/IceUtil/Random.cpp +1 -1
  500. data/ext/ice/cpp/src/IceUtil/RecMutex.cpp +1 -5
  501. data/ext/ice/cpp/src/IceUtil/Shared.cpp +1 -1
  502. data/ext/ice/cpp/src/IceUtil/StringConverter.cpp +1 -1
  503. data/ext/ice/cpp/src/IceUtil/StringUtil.cpp +1 -1
  504. data/ext/ice/cpp/src/IceUtil/ThreadException.cpp +1 -1
  505. data/ext/ice/cpp/src/IceUtil/Time.cpp +1 -1
  506. data/ext/ice/cpp/src/IceUtil/UUID.cpp +3 -3
  507. data/ext/ice/cpp/src/IceUtil/Unicode.cpp +1 -1
  508. data/ext/ice/cpp/src/IceUtil/Unicode.h +1 -1
  509. data/ext/ice/cpp/src/IceUtil/UtilException.cpp +1 -1
  510. data/ext/ice/cpp/src/Slice/CPlusPlusUtil.cpp +160 -150
  511. data/ext/ice/cpp/src/Slice/CPlusPlusUtil.h +9 -8
  512. data/ext/ice/cpp/src/Slice/Checksum.cpp +1 -1
  513. data/ext/ice/cpp/src/Slice/Checksum.h +1 -1
  514. data/ext/ice/cpp/src/Slice/FileTracker.cpp +1 -1
  515. data/ext/ice/cpp/src/Slice/FileTracker.h +1 -1
  516. data/ext/ice/cpp/src/Slice/Grammar.cpp +567 -585
  517. data/ext/ice/cpp/src/Slice/Grammar.h +2 -2
  518. data/ext/ice/cpp/src/Slice/GrammarUtil.h +1 -1
  519. data/ext/ice/cpp/src/Slice/JavaUtil.cpp +131 -47
  520. data/ext/ice/cpp/src/Slice/JavaUtil.h +10 -5
  521. data/ext/ice/cpp/src/Slice/MD5.cpp +1 -1
  522. data/ext/ice/cpp/src/Slice/MD5.h +1 -1
  523. data/ext/ice/cpp/src/Slice/PHPUtil.cpp +1 -1
  524. data/ext/ice/cpp/src/Slice/PHPUtil.h +1 -1
  525. data/ext/ice/cpp/src/Slice/Parser.cpp +383 -101
  526. data/ext/ice/cpp/src/Slice/Parser.h +40 -3
  527. data/ext/ice/cpp/src/Slice/Preprocessor.cpp +2 -1
  528. data/ext/ice/cpp/src/Slice/Preprocessor.h +2 -2
  529. data/ext/ice/cpp/src/Slice/Python.cpp +7 -15
  530. data/ext/ice/cpp/src/Slice/PythonUtil.cpp +66 -9
  531. data/ext/ice/cpp/src/Slice/PythonUtil.h +2 -2
  532. data/ext/ice/cpp/src/Slice/Ruby.cpp +1 -1
  533. data/ext/ice/cpp/src/Slice/RubyUtil.cpp +2 -2
  534. data/ext/ice/cpp/src/Slice/RubyUtil.h +1 -1
  535. data/ext/ice/cpp/src/Slice/Scanner.cpp +214 -135
  536. data/ext/ice/cpp/src/Slice/SliceUtil.cpp +1 -1
  537. data/ext/ice/cpp/src/Slice/StringLiteralUtil.cpp +99 -17
  538. data/ext/ice/cpp/src/Slice/Util.h +5 -4
  539. data/ice.gemspec +2 -2
  540. data/lib/Glacier2.rb +1 -1
  541. data/lib/Glacier2/Metrics.rb +2 -2
  542. data/lib/Glacier2/PermissionsVerifier.rb +2 -2
  543. data/lib/Glacier2/PermissionsVerifierF.rb +2 -2
  544. data/lib/Glacier2/Router.rb +2 -2
  545. data/lib/Glacier2/RouterF.rb +2 -2
  546. data/lib/Glacier2/SSLInfo.rb +2 -2
  547. data/lib/Glacier2/Session.rb +2 -2
  548. data/lib/Ice.rb +2 -2
  549. data/lib/Ice/BuiltinSequences.rb +2 -2
  550. data/lib/Ice/Communicator.rb +2 -2
  551. data/lib/Ice/CommunicatorF.rb +2 -2
  552. data/lib/Ice/Connection.rb +2 -2
  553. data/lib/Ice/ConnectionF.rb +2 -2
  554. data/lib/Ice/Current.rb +2 -2
  555. data/lib/Ice/Endpoint.rb +2 -2
  556. data/lib/Ice/EndpointF.rb +2 -2
  557. data/lib/Ice/EndpointTypes.rb +2 -2
  558. data/lib/Ice/FacetMap.rb +2 -2
  559. data/lib/Ice/Identity.rb +2 -2
  560. data/lib/Ice/ImplicitContext.rb +2 -2
  561. data/lib/Ice/ImplicitContextF.rb +2 -2
  562. data/lib/Ice/Instrumentation.rb +2 -2
  563. data/lib/Ice/InstrumentationF.rb +2 -2
  564. data/lib/Ice/LocalException.rb +2 -2
  565. data/lib/Ice/Locator.rb +2 -2
  566. data/lib/Ice/LocatorF.rb +2 -2
  567. data/lib/Ice/Logger.rb +2 -2
  568. data/lib/Ice/LoggerF.rb +2 -2
  569. data/lib/Ice/Metrics.rb +2 -2
  570. data/lib/Ice/ObjectAdapter.rb +2 -2
  571. data/lib/Ice/ObjectAdapterF.rb +2 -2
  572. data/lib/Ice/ObjectFactory.rb +2 -2
  573. data/lib/Ice/Plugin.rb +2 -2
  574. data/lib/Ice/PluginF.rb +2 -2
  575. data/lib/Ice/Process.rb +2 -2
  576. data/lib/Ice/ProcessF.rb +2 -2
  577. data/lib/Ice/Properties.rb +2 -2
  578. data/lib/Ice/PropertiesAdmin.rb +2 -2
  579. data/lib/Ice/PropertiesF.rb +2 -2
  580. data/lib/Ice/RemoteLogger.rb +2 -2
  581. data/lib/Ice/Router.rb +2 -2
  582. data/lib/Ice/RouterF.rb +2 -2
  583. data/lib/Ice/ServantLocator.rb +2 -2
  584. data/lib/Ice/ServantLocatorF.rb +2 -2
  585. data/lib/Ice/SliceChecksumDict.rb +2 -2
  586. data/lib/Ice/ValueFactory.rb +2 -2
  587. data/lib/Ice/Version.rb +2 -2
  588. data/lib/IceBox.rb +1 -1
  589. data/lib/IceBox/IceBox.rb +2 -2
  590. data/lib/IceGrid.rb +1 -1
  591. data/lib/IceGrid/Admin.rb +2 -2
  592. data/lib/IceGrid/Descriptor.rb +2 -2
  593. data/lib/IceGrid/Exception.rb +2 -2
  594. data/lib/IceGrid/FileParser.rb +2 -2
  595. data/lib/IceGrid/PluginFacade.rb +2 -2
  596. data/lib/IceGrid/Registry.rb +2 -2
  597. data/lib/IceGrid/Session.rb +2 -2
  598. data/lib/IceGrid/UserAccountMapper.rb +2 -2
  599. data/lib/IcePatch2.rb +1 -1
  600. data/lib/IcePatch2/FileInfo.rb +2 -2
  601. data/lib/IcePatch2/FileServer.rb +2 -2
  602. data/lib/IceStorm.rb +1 -1
  603. data/lib/IceStorm/IceStorm.rb +2 -2
  604. data/lib/IceStorm/Metrics.rb +2 -2
  605. data/slice/Glacier2/Metrics.ice +2 -2
  606. data/slice/Glacier2/PermissionsVerifier.ice +2 -2
  607. data/slice/Glacier2/PermissionsVerifierF.ice +2 -2
  608. data/slice/Glacier2/Router.ice +2 -2
  609. data/slice/Glacier2/RouterF.ice +2 -2
  610. data/slice/Glacier2/SSLInfo.ice +2 -2
  611. data/slice/Glacier2/Session.ice +2 -2
  612. data/slice/Ice/BuiltinSequences.ice +2 -2
  613. data/slice/Ice/Communicator.ice +66 -73
  614. data/slice/Ice/CommunicatorF.ice +2 -2
  615. data/slice/Ice/Connection.ice +47 -17
  616. data/slice/Ice/ConnectionF.ice +2 -2
  617. data/slice/Ice/Current.ice +4 -5
  618. data/slice/Ice/Endpoint.ice +16 -16
  619. data/slice/Ice/EndpointF.ice +2 -2
  620. data/slice/Ice/EndpointTypes.ice +2 -2
  621. data/slice/Ice/FacetMap.ice +2 -2
  622. data/slice/Ice/Identity.ice +2 -2
  623. data/slice/Ice/ImplicitContext.ice +6 -6
  624. data/slice/Ice/ImplicitContextF.ice +2 -2
  625. data/slice/Ice/Instrumentation.ice +2 -2
  626. data/slice/Ice/InstrumentationF.ice +2 -2
  627. data/slice/Ice/LocalException.ice +2 -2
  628. data/slice/Ice/Locator.ice +3 -3
  629. data/slice/Ice/LocatorF.ice +2 -2
  630. data/slice/Ice/Logger.ice +2 -2
  631. data/slice/Ice/LoggerF.ice +2 -2
  632. data/slice/Ice/Metrics.ice +2 -2
  633. data/slice/Ice/ObjectAdapter.ice +10 -10
  634. data/slice/Ice/ObjectAdapterF.ice +2 -2
  635. data/slice/Ice/ObjectFactory.ice +3 -3
  636. data/slice/Ice/Plugin.ice +4 -4
  637. data/slice/Ice/PluginF.ice +2 -2
  638. data/slice/Ice/Process.ice +2 -2
  639. data/slice/Ice/ProcessF.ice +2 -2
  640. data/slice/Ice/Properties.ice +11 -11
  641. data/slice/Ice/PropertiesAdmin.ice +2 -2
  642. data/slice/Ice/PropertiesF.ice +2 -2
  643. data/slice/Ice/RemoteLogger.ice +12 -23
  644. data/slice/Ice/Router.ice +2 -2
  645. data/slice/Ice/RouterF.ice +2 -2
  646. data/slice/Ice/ServantLocator.ice +2 -2
  647. data/slice/Ice/ServantLocatorF.ice +2 -2
  648. data/slice/Ice/SliceChecksumDict.ice +2 -2
  649. data/slice/Ice/ValueFactory.ice +14 -16
  650. data/slice/Ice/Version.ice +2 -2
  651. data/slice/IceBT/ConnectionInfo.ice +2 -2
  652. data/slice/IceBT/EndpointInfo.ice +2 -2
  653. data/slice/IceBT/Types.ice +2 -2
  654. data/slice/IceBox/IceBox.ice +3 -4
  655. data/slice/IceDiscovery/IceDiscovery.ice +2 -2
  656. data/slice/IceGrid/Admin.ice +2 -2
  657. data/slice/IceGrid/Descriptor.ice +2 -2
  658. data/slice/IceGrid/Exception.ice +2 -2
  659. data/slice/IceGrid/FileParser.ice +2 -2
  660. data/slice/IceGrid/PluginFacade.ice +6 -6
  661. data/slice/IceGrid/Registry.ice +2 -2
  662. data/slice/IceGrid/Session.ice +2 -2
  663. data/slice/IceGrid/UserAccountMapper.ice +2 -2
  664. data/slice/IceIAP/ConnectionInfo.ice +2 -2
  665. data/slice/IceIAP/EndpointInfo.ice +2 -2
  666. data/slice/IceLocatorDiscovery/IceLocatorDiscovery.ice +2 -2
  667. data/slice/IcePatch2/FileInfo.ice +2 -2
  668. data/slice/IcePatch2/FileServer.ice +2 -2
  669. data/slice/IceSSL/ConnectionInfo.ice +2 -2
  670. data/slice/IceSSL/ConnectionInfoF.ice +2 -2
  671. data/slice/IceSSL/EndpointInfo.ice +2 -2
  672. data/slice/IceStorm/IceStorm.ice +5 -6
  673. data/slice/IceStorm/Metrics.ice +2 -2
  674. metadata +3 -13
  675. data/BZIP2_LICENSE +0 -42
  676. data/ext/ice/bzip2/blocksort.c +0 -1094
  677. data/ext/ice/bzip2/bzlib.c +0 -1572
  678. data/ext/ice/bzip2/bzlib.h +0 -282
  679. data/ext/ice/bzip2/bzlib_private.h +0 -509
  680. data/ext/ice/bzip2/compress.c +0 -672
  681. data/ext/ice/bzip2/crctable.c +0 -104
  682. data/ext/ice/bzip2/decompress.c +0 -646
  683. data/ext/ice/bzip2/huffman.c +0 -205
  684. data/ext/ice/bzip2/randtable.c +0 -84
@@ -1,13 +1,13 @@
1
1
  // **********************************************************************
2
2
  //
3
- // Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
3
+ // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
4
4
  //
5
5
  // This copy of Ice is licensed to you under the terms described in the
6
6
  // ICE_LICENSE file included in this distribution.
7
7
  //
8
8
  // **********************************************************************
9
9
  //
10
- // Ice version 3.7.0
10
+ // Ice version 3.7.1
11
11
  //
12
12
  // <auto-generated>
13
13
  //
@@ -40,7 +40,7 @@
40
40
  # if ICE_INT_VERSION % 100 > 50
41
41
  # error Beta header file detected
42
42
  # endif
43
- # if ICE_INT_VERSION % 100 < 0
43
+ # if ICE_INT_VERSION % 100 < 1
44
44
  # error Ice patch level mismatch!
45
45
  # endif
46
46
  #endif
@@ -1,6 +1,6 @@
1
1
  // **********************************************************************
2
2
  //
3
- // Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
3
+ // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
4
4
  //
5
5
  // This copy of Ice is licensed to you under the terms described in the
6
6
  // ICE_LICENSE file included in this distribution.
@@ -1,6 +1,6 @@
1
1
  // **********************************************************************
2
2
  //
3
- // Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
3
+ // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
4
4
  //
5
5
  // This copy of Ice is licensed to you under the terms described in the
6
6
  // ICE_LICENSE file included in this distribution.
@@ -1,13 +1,13 @@
1
1
  // **********************************************************************
2
2
  //
3
- // Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
3
+ // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
4
4
  //
5
5
  // This copy of Ice is licensed to you under the terms described in the
6
6
  // ICE_LICENSE file included in this distribution.
7
7
  //
8
8
  // **********************************************************************
9
9
  //
10
- // Ice version 3.7.0
10
+ // Ice version 3.7.1
11
11
  //
12
12
  // <auto-generated>
13
13
  //
@@ -42,7 +42,7 @@
42
42
  # if ICE_INT_VERSION % 100 > 50
43
43
  # error Beta header file detected
44
44
  # endif
45
- # if ICE_INT_VERSION % 100 < 0
45
+ # if ICE_INT_VERSION % 100 < 1
46
46
  # error Ice patch level mismatch!
47
47
  # endif
48
48
  #endif
@@ -777,14 +777,14 @@ Ice::ResponseSentException::ice_staticId()
777
777
 
778
778
  #else // C++98 mapping
779
779
 
780
- Ice::InitializationException::InitializationException(const char* file_, int line_) :
781
- ::Ice::LocalException(file_, line_)
780
+ Ice::InitializationException::InitializationException(const char* file, int line) :
781
+ LocalException(file, line)
782
782
  {
783
783
  }
784
784
 
785
- Ice::InitializationException::InitializationException(const char* file_, int line_, const ::std::string& iceP_reason) :
786
- ::Ice::LocalException(file_, line_),
787
- reason(iceP_reason)
785
+ Ice::InitializationException::InitializationException(const char* file, int line, const ::std::string& reason) :
786
+ LocalException(file, line),
787
+ reason(reason)
788
788
  {
789
789
  }
790
790
 
@@ -810,14 +810,14 @@ Ice::InitializationException::ice_throw() const
810
810
  throw *this;
811
811
  }
812
812
 
813
- Ice::PluginInitializationException::PluginInitializationException(const char* file_, int line_) :
814
- ::Ice::LocalException(file_, line_)
813
+ Ice::PluginInitializationException::PluginInitializationException(const char* file, int line) :
814
+ LocalException(file, line)
815
815
  {
816
816
  }
817
817
 
818
- Ice::PluginInitializationException::PluginInitializationException(const char* file_, int line_, const ::std::string& iceP_reason) :
819
- ::Ice::LocalException(file_, line_),
820
- reason(iceP_reason)
818
+ Ice::PluginInitializationException::PluginInitializationException(const char* file, int line, const ::std::string& reason) :
819
+ LocalException(file, line),
820
+ reason(reason)
821
821
  {
822
822
  }
823
823
 
@@ -843,8 +843,8 @@ Ice::PluginInitializationException::ice_throw() const
843
843
  throw *this;
844
844
  }
845
845
 
846
- Ice::CollocationOptimizationException::CollocationOptimizationException(const char* file_, int line_) :
847
- ::Ice::LocalException(file_, line_)
846
+ Ice::CollocationOptimizationException::CollocationOptimizationException(const char* file, int line) :
847
+ LocalException(file, line)
848
848
  {
849
849
  }
850
850
 
@@ -870,15 +870,15 @@ Ice::CollocationOptimizationException::ice_throw() const
870
870
  throw *this;
871
871
  }
872
872
 
873
- Ice::AlreadyRegisteredException::AlreadyRegisteredException(const char* file_, int line_) :
874
- ::Ice::LocalException(file_, line_)
873
+ Ice::AlreadyRegisteredException::AlreadyRegisteredException(const char* file, int line) :
874
+ LocalException(file, line)
875
875
  {
876
876
  }
877
877
 
878
- Ice::AlreadyRegisteredException::AlreadyRegisteredException(const char* file_, int line_, const ::std::string& iceP_kindOfObject, const ::std::string& iceP_id) :
879
- ::Ice::LocalException(file_, line_),
880
- kindOfObject(iceP_kindOfObject),
881
- id(iceP_id)
878
+ Ice::AlreadyRegisteredException::AlreadyRegisteredException(const char* file, int line, const ::std::string& kindOfObject, const ::std::string& id) :
879
+ LocalException(file, line),
880
+ kindOfObject(kindOfObject),
881
+ id(id)
882
882
  {
883
883
  }
884
884
 
@@ -904,15 +904,15 @@ Ice::AlreadyRegisteredException::ice_throw() const
904
904
  throw *this;
905
905
  }
906
906
 
907
- Ice::NotRegisteredException::NotRegisteredException(const char* file_, int line_) :
908
- ::Ice::LocalException(file_, line_)
907
+ Ice::NotRegisteredException::NotRegisteredException(const char* file, int line) :
908
+ LocalException(file, line)
909
909
  {
910
910
  }
911
911
 
912
- Ice::NotRegisteredException::NotRegisteredException(const char* file_, int line_, const ::std::string& iceP_kindOfObject, const ::std::string& iceP_id) :
913
- ::Ice::LocalException(file_, line_),
914
- kindOfObject(iceP_kindOfObject),
915
- id(iceP_id)
912
+ Ice::NotRegisteredException::NotRegisteredException(const char* file, int line, const ::std::string& kindOfObject, const ::std::string& id) :
913
+ LocalException(file, line),
914
+ kindOfObject(kindOfObject),
915
+ id(id)
916
916
  {
917
917
  }
918
918
 
@@ -938,14 +938,14 @@ Ice::NotRegisteredException::ice_throw() const
938
938
  throw *this;
939
939
  }
940
940
 
941
- Ice::TwowayOnlyException::TwowayOnlyException(const char* file_, int line_) :
942
- ::Ice::LocalException(file_, line_)
941
+ Ice::TwowayOnlyException::TwowayOnlyException(const char* file, int line) :
942
+ LocalException(file, line)
943
943
  {
944
944
  }
945
945
 
946
- Ice::TwowayOnlyException::TwowayOnlyException(const char* file_, int line_, const ::std::string& iceP_operation) :
947
- ::Ice::LocalException(file_, line_),
948
- operation(iceP_operation)
946
+ Ice::TwowayOnlyException::TwowayOnlyException(const char* file, int line, const ::std::string& operation) :
947
+ LocalException(file, line),
948
+ operation(operation)
949
949
  {
950
950
  }
951
951
 
@@ -971,8 +971,8 @@ Ice::TwowayOnlyException::ice_throw() const
971
971
  throw *this;
972
972
  }
973
973
 
974
- Ice::CloneNotImplementedException::CloneNotImplementedException(const char* file_, int line_) :
975
- ::Ice::LocalException(file_, line_)
974
+ Ice::CloneNotImplementedException::CloneNotImplementedException(const char* file, int line) :
975
+ LocalException(file, line)
976
976
  {
977
977
  }
978
978
 
@@ -998,14 +998,14 @@ Ice::CloneNotImplementedException::ice_throw() const
998
998
  throw *this;
999
999
  }
1000
1000
 
1001
- Ice::UnknownException::UnknownException(const char* file_, int line_) :
1002
- ::Ice::LocalException(file_, line_)
1001
+ Ice::UnknownException::UnknownException(const char* file, int line) :
1002
+ LocalException(file, line)
1003
1003
  {
1004
1004
  }
1005
1005
 
1006
- Ice::UnknownException::UnknownException(const char* file_, int line_, const ::std::string& iceP_unknown) :
1007
- ::Ice::LocalException(file_, line_),
1008
- unknown(iceP_unknown)
1006
+ Ice::UnknownException::UnknownException(const char* file, int line, const ::std::string& unknown) :
1007
+ LocalException(file, line),
1008
+ unknown(unknown)
1009
1009
  {
1010
1010
  }
1011
1011
 
@@ -1031,13 +1031,13 @@ Ice::UnknownException::ice_throw() const
1031
1031
  throw *this;
1032
1032
  }
1033
1033
 
1034
- Ice::UnknownLocalException::UnknownLocalException(const char* file_, int line_) :
1035
- ::Ice::UnknownException(file_, line_)
1034
+ Ice::UnknownLocalException::UnknownLocalException(const char* file, int line) :
1035
+ UnknownException(file, line)
1036
1036
  {
1037
1037
  }
1038
1038
 
1039
- Ice::UnknownLocalException::UnknownLocalException(const char* file_, int line_, const ::std::string& iceP_unknown) :
1040
- ::Ice::UnknownException(file_, line_, iceP_unknown)
1039
+ Ice::UnknownLocalException::UnknownLocalException(const char* file, int line, const ::std::string& unknown) :
1040
+ UnknownException(file, line, unknown)
1041
1041
  {
1042
1042
  }
1043
1043
 
@@ -1063,13 +1063,13 @@ Ice::UnknownLocalException::ice_throw() const
1063
1063
  throw *this;
1064
1064
  }
1065
1065
 
1066
- Ice::UnknownUserException::UnknownUserException(const char* file_, int line_) :
1067
- ::Ice::UnknownException(file_, line_)
1066
+ Ice::UnknownUserException::UnknownUserException(const char* file, int line) :
1067
+ UnknownException(file, line)
1068
1068
  {
1069
1069
  }
1070
1070
 
1071
- Ice::UnknownUserException::UnknownUserException(const char* file_, int line_, const ::std::string& iceP_unknown) :
1072
- ::Ice::UnknownException(file_, line_, iceP_unknown)
1071
+ Ice::UnknownUserException::UnknownUserException(const char* file, int line, const ::std::string& unknown) :
1072
+ UnknownException(file, line, unknown)
1073
1073
  {
1074
1074
  }
1075
1075
 
@@ -1095,8 +1095,8 @@ Ice::UnknownUserException::ice_throw() const
1095
1095
  throw *this;
1096
1096
  }
1097
1097
 
1098
- Ice::VersionMismatchException::VersionMismatchException(const char* file_, int line_) :
1099
- ::Ice::LocalException(file_, line_)
1098
+ Ice::VersionMismatchException::VersionMismatchException(const char* file, int line) :
1099
+ LocalException(file, line)
1100
1100
  {
1101
1101
  }
1102
1102
 
@@ -1122,8 +1122,8 @@ Ice::VersionMismatchException::ice_throw() const
1122
1122
  throw *this;
1123
1123
  }
1124
1124
 
1125
- Ice::CommunicatorDestroyedException::CommunicatorDestroyedException(const char* file_, int line_) :
1126
- ::Ice::LocalException(file_, line_)
1125
+ Ice::CommunicatorDestroyedException::CommunicatorDestroyedException(const char* file, int line) :
1126
+ LocalException(file, line)
1127
1127
  {
1128
1128
  }
1129
1129
 
@@ -1149,14 +1149,14 @@ Ice::CommunicatorDestroyedException::ice_throw() const
1149
1149
  throw *this;
1150
1150
  }
1151
1151
 
1152
- Ice::ObjectAdapterDeactivatedException::ObjectAdapterDeactivatedException(const char* file_, int line_) :
1153
- ::Ice::LocalException(file_, line_)
1152
+ Ice::ObjectAdapterDeactivatedException::ObjectAdapterDeactivatedException(const char* file, int line) :
1153
+ LocalException(file, line)
1154
1154
  {
1155
1155
  }
1156
1156
 
1157
- Ice::ObjectAdapterDeactivatedException::ObjectAdapterDeactivatedException(const char* file_, int line_, const ::std::string& iceP_name) :
1158
- ::Ice::LocalException(file_, line_),
1159
- name(iceP_name)
1157
+ Ice::ObjectAdapterDeactivatedException::ObjectAdapterDeactivatedException(const char* file, int line, const ::std::string& name) :
1158
+ LocalException(file, line),
1159
+ name(name)
1160
1160
  {
1161
1161
  }
1162
1162
 
@@ -1182,14 +1182,14 @@ Ice::ObjectAdapterDeactivatedException::ice_throw() const
1182
1182
  throw *this;
1183
1183
  }
1184
1184
 
1185
- Ice::ObjectAdapterIdInUseException::ObjectAdapterIdInUseException(const char* file_, int line_) :
1186
- ::Ice::LocalException(file_, line_)
1185
+ Ice::ObjectAdapterIdInUseException::ObjectAdapterIdInUseException(const char* file, int line) :
1186
+ LocalException(file, line)
1187
1187
  {
1188
1188
  }
1189
1189
 
1190
- Ice::ObjectAdapterIdInUseException::ObjectAdapterIdInUseException(const char* file_, int line_, const ::std::string& iceP_id) :
1191
- ::Ice::LocalException(file_, line_),
1192
- id(iceP_id)
1190
+ Ice::ObjectAdapterIdInUseException::ObjectAdapterIdInUseException(const char* file, int line, const ::std::string& id) :
1191
+ LocalException(file, line),
1192
+ id(id)
1193
1193
  {
1194
1194
  }
1195
1195
 
@@ -1215,14 +1215,14 @@ Ice::ObjectAdapterIdInUseException::ice_throw() const
1215
1215
  throw *this;
1216
1216
  }
1217
1217
 
1218
- Ice::NoEndpointException::NoEndpointException(const char* file_, int line_) :
1219
- ::Ice::LocalException(file_, line_)
1218
+ Ice::NoEndpointException::NoEndpointException(const char* file, int line) :
1219
+ LocalException(file, line)
1220
1220
  {
1221
1221
  }
1222
1222
 
1223
- Ice::NoEndpointException::NoEndpointException(const char* file_, int line_, const ::std::string& iceP_proxy) :
1224
- ::Ice::LocalException(file_, line_),
1225
- proxy(iceP_proxy)
1223
+ Ice::NoEndpointException::NoEndpointException(const char* file, int line, const ::std::string& proxy) :
1224
+ LocalException(file, line),
1225
+ proxy(proxy)
1226
1226
  {
1227
1227
  }
1228
1228
 
@@ -1248,14 +1248,14 @@ Ice::NoEndpointException::ice_throw() const
1248
1248
  throw *this;
1249
1249
  }
1250
1250
 
1251
- Ice::EndpointParseException::EndpointParseException(const char* file_, int line_) :
1252
- ::Ice::LocalException(file_, line_)
1251
+ Ice::EndpointParseException::EndpointParseException(const char* file, int line) :
1252
+ LocalException(file, line)
1253
1253
  {
1254
1254
  }
1255
1255
 
1256
- Ice::EndpointParseException::EndpointParseException(const char* file_, int line_, const ::std::string& iceP_str) :
1257
- ::Ice::LocalException(file_, line_),
1258
- str(iceP_str)
1256
+ Ice::EndpointParseException::EndpointParseException(const char* file, int line, const ::std::string& str) :
1257
+ LocalException(file, line),
1258
+ str(str)
1259
1259
  {
1260
1260
  }
1261
1261
 
@@ -1281,14 +1281,14 @@ Ice::EndpointParseException::ice_throw() const
1281
1281
  throw *this;
1282
1282
  }
1283
1283
 
1284
- Ice::EndpointSelectionTypeParseException::EndpointSelectionTypeParseException(const char* file_, int line_) :
1285
- ::Ice::LocalException(file_, line_)
1284
+ Ice::EndpointSelectionTypeParseException::EndpointSelectionTypeParseException(const char* file, int line) :
1285
+ LocalException(file, line)
1286
1286
  {
1287
1287
  }
1288
1288
 
1289
- Ice::EndpointSelectionTypeParseException::EndpointSelectionTypeParseException(const char* file_, int line_, const ::std::string& iceP_str) :
1290
- ::Ice::LocalException(file_, line_),
1291
- str(iceP_str)
1289
+ Ice::EndpointSelectionTypeParseException::EndpointSelectionTypeParseException(const char* file, int line, const ::std::string& str) :
1290
+ LocalException(file, line),
1291
+ str(str)
1292
1292
  {
1293
1293
  }
1294
1294
 
@@ -1314,14 +1314,14 @@ Ice::EndpointSelectionTypeParseException::ice_throw() const
1314
1314
  throw *this;
1315
1315
  }
1316
1316
 
1317
- Ice::VersionParseException::VersionParseException(const char* file_, int line_) :
1318
- ::Ice::LocalException(file_, line_)
1317
+ Ice::VersionParseException::VersionParseException(const char* file, int line) :
1318
+ LocalException(file, line)
1319
1319
  {
1320
1320
  }
1321
1321
 
1322
- Ice::VersionParseException::VersionParseException(const char* file_, int line_, const ::std::string& iceP_str) :
1323
- ::Ice::LocalException(file_, line_),
1324
- str(iceP_str)
1322
+ Ice::VersionParseException::VersionParseException(const char* file, int line, const ::std::string& str) :
1323
+ LocalException(file, line),
1324
+ str(str)
1325
1325
  {
1326
1326
  }
1327
1327
 
@@ -1347,14 +1347,14 @@ Ice::VersionParseException::ice_throw() const
1347
1347
  throw *this;
1348
1348
  }
1349
1349
 
1350
- Ice::IdentityParseException::IdentityParseException(const char* file_, int line_) :
1351
- ::Ice::LocalException(file_, line_)
1350
+ Ice::IdentityParseException::IdentityParseException(const char* file, int line) :
1351
+ LocalException(file, line)
1352
1352
  {
1353
1353
  }
1354
1354
 
1355
- Ice::IdentityParseException::IdentityParseException(const char* file_, int line_, const ::std::string& iceP_str) :
1356
- ::Ice::LocalException(file_, line_),
1357
- str(iceP_str)
1355
+ Ice::IdentityParseException::IdentityParseException(const char* file, int line, const ::std::string& str) :
1356
+ LocalException(file, line),
1357
+ str(str)
1358
1358
  {
1359
1359
  }
1360
1360
 
@@ -1380,14 +1380,14 @@ Ice::IdentityParseException::ice_throw() const
1380
1380
  throw *this;
1381
1381
  }
1382
1382
 
1383
- Ice::ProxyParseException::ProxyParseException(const char* file_, int line_) :
1384
- ::Ice::LocalException(file_, line_)
1383
+ Ice::ProxyParseException::ProxyParseException(const char* file, int line) :
1384
+ LocalException(file, line)
1385
1385
  {
1386
1386
  }
1387
1387
 
1388
- Ice::ProxyParseException::ProxyParseException(const char* file_, int line_, const ::std::string& iceP_str) :
1389
- ::Ice::LocalException(file_, line_),
1390
- str(iceP_str)
1388
+ Ice::ProxyParseException::ProxyParseException(const char* file, int line, const ::std::string& str) :
1389
+ LocalException(file, line),
1390
+ str(str)
1391
1391
  {
1392
1392
  }
1393
1393
 
@@ -1413,14 +1413,14 @@ Ice::ProxyParseException::ice_throw() const
1413
1413
  throw *this;
1414
1414
  }
1415
1415
 
1416
- Ice::IllegalIdentityException::IllegalIdentityException(const char* file_, int line_) :
1417
- ::Ice::LocalException(file_, line_)
1416
+ Ice::IllegalIdentityException::IllegalIdentityException(const char* file, int line) :
1417
+ LocalException(file, line)
1418
1418
  {
1419
1419
  }
1420
1420
 
1421
- Ice::IllegalIdentityException::IllegalIdentityException(const char* file_, int line_, const ::Ice::Identity& iceP_id) :
1422
- ::Ice::LocalException(file_, line_),
1423
- id(iceP_id)
1421
+ Ice::IllegalIdentityException::IllegalIdentityException(const char* file, int line, const Identity& id) :
1422
+ LocalException(file, line),
1423
+ id(id)
1424
1424
  {
1425
1425
  }
1426
1426
 
@@ -1446,14 +1446,14 @@ Ice::IllegalIdentityException::ice_throw() const
1446
1446
  throw *this;
1447
1447
  }
1448
1448
 
1449
- Ice::IllegalServantException::IllegalServantException(const char* file_, int line_) :
1450
- ::Ice::LocalException(file_, line_)
1449
+ Ice::IllegalServantException::IllegalServantException(const char* file, int line) :
1450
+ LocalException(file, line)
1451
1451
  {
1452
1452
  }
1453
1453
 
1454
- Ice::IllegalServantException::IllegalServantException(const char* file_, int line_, const ::std::string& iceP_reason) :
1455
- ::Ice::LocalException(file_, line_),
1456
- reason(iceP_reason)
1454
+ Ice::IllegalServantException::IllegalServantException(const char* file, int line, const ::std::string& reason) :
1455
+ LocalException(file, line),
1456
+ reason(reason)
1457
1457
  {
1458
1458
  }
1459
1459
 
@@ -1479,16 +1479,16 @@ Ice::IllegalServantException::ice_throw() const
1479
1479
  throw *this;
1480
1480
  }
1481
1481
 
1482
- Ice::RequestFailedException::RequestFailedException(const char* file_, int line_) :
1483
- ::Ice::LocalException(file_, line_)
1482
+ Ice::RequestFailedException::RequestFailedException(const char* file, int line) :
1483
+ LocalException(file, line)
1484
1484
  {
1485
1485
  }
1486
1486
 
1487
- Ice::RequestFailedException::RequestFailedException(const char* file_, int line_, const ::Ice::Identity& iceP_id, const ::std::string& iceP_facet, const ::std::string& iceP_operation) :
1488
- ::Ice::LocalException(file_, line_),
1489
- id(iceP_id),
1490
- facet(iceP_facet),
1491
- operation(iceP_operation)
1487
+ Ice::RequestFailedException::RequestFailedException(const char* file, int line, const Identity& id, const ::std::string& facet, const ::std::string& operation) :
1488
+ LocalException(file, line),
1489
+ id(id),
1490
+ facet(facet),
1491
+ operation(operation)
1492
1492
  {
1493
1493
  }
1494
1494
 
@@ -1514,13 +1514,13 @@ Ice::RequestFailedException::ice_throw() const
1514
1514
  throw *this;
1515
1515
  }
1516
1516
 
1517
- Ice::ObjectNotExistException::ObjectNotExistException(const char* file_, int line_) :
1518
- ::Ice::RequestFailedException(file_, line_)
1517
+ Ice::ObjectNotExistException::ObjectNotExistException(const char* file, int line) :
1518
+ RequestFailedException(file, line)
1519
1519
  {
1520
1520
  }
1521
1521
 
1522
- Ice::ObjectNotExistException::ObjectNotExistException(const char* file_, int line_, const ::Ice::Identity& iceP_id, const ::std::string& iceP_facet, const ::std::string& iceP_operation) :
1523
- ::Ice::RequestFailedException(file_, line_, iceP_id, iceP_facet, iceP_operation)
1522
+ Ice::ObjectNotExistException::ObjectNotExistException(const char* file, int line, const Identity& id, const ::std::string& facet, const ::std::string& operation) :
1523
+ RequestFailedException(file, line, id, facet, operation)
1524
1524
  {
1525
1525
  }
1526
1526
 
@@ -1546,13 +1546,13 @@ Ice::ObjectNotExistException::ice_throw() const
1546
1546
  throw *this;
1547
1547
  }
1548
1548
 
1549
- Ice::FacetNotExistException::FacetNotExistException(const char* file_, int line_) :
1550
- ::Ice::RequestFailedException(file_, line_)
1549
+ Ice::FacetNotExistException::FacetNotExistException(const char* file, int line) :
1550
+ RequestFailedException(file, line)
1551
1551
  {
1552
1552
  }
1553
1553
 
1554
- Ice::FacetNotExistException::FacetNotExistException(const char* file_, int line_, const ::Ice::Identity& iceP_id, const ::std::string& iceP_facet, const ::std::string& iceP_operation) :
1555
- ::Ice::RequestFailedException(file_, line_, iceP_id, iceP_facet, iceP_operation)
1554
+ Ice::FacetNotExistException::FacetNotExistException(const char* file, int line, const Identity& id, const ::std::string& facet, const ::std::string& operation) :
1555
+ RequestFailedException(file, line, id, facet, operation)
1556
1556
  {
1557
1557
  }
1558
1558
 
@@ -1578,13 +1578,13 @@ Ice::FacetNotExistException::ice_throw() const
1578
1578
  throw *this;
1579
1579
  }
1580
1580
 
1581
- Ice::OperationNotExistException::OperationNotExistException(const char* file_, int line_) :
1582
- ::Ice::RequestFailedException(file_, line_)
1581
+ Ice::OperationNotExistException::OperationNotExistException(const char* file, int line) :
1582
+ RequestFailedException(file, line)
1583
1583
  {
1584
1584
  }
1585
1585
 
1586
- Ice::OperationNotExistException::OperationNotExistException(const char* file_, int line_, const ::Ice::Identity& iceP_id, const ::std::string& iceP_facet, const ::std::string& iceP_operation) :
1587
- ::Ice::RequestFailedException(file_, line_, iceP_id, iceP_facet, iceP_operation)
1586
+ Ice::OperationNotExistException::OperationNotExistException(const char* file, int line, const Identity& id, const ::std::string& facet, const ::std::string& operation) :
1587
+ RequestFailedException(file, line, id, facet, operation)
1588
1588
  {
1589
1589
  }
1590
1590
 
@@ -1610,15 +1610,15 @@ Ice::OperationNotExistException::ice_throw() const
1610
1610
  throw *this;
1611
1611
  }
1612
1612
 
1613
- Ice::SyscallException::SyscallException(const char* file_, int line_) :
1614
- ::Ice::LocalException(file_, line_),
1613
+ Ice::SyscallException::SyscallException(const char* file, int line) :
1614
+ LocalException(file, line),
1615
1615
  error(0)
1616
1616
  {
1617
1617
  }
1618
1618
 
1619
- Ice::SyscallException::SyscallException(const char* file_, int line_, ::Ice::Int iceP_error) :
1620
- ::Ice::LocalException(file_, line_),
1621
- error(iceP_error)
1619
+ Ice::SyscallException::SyscallException(const char* file, int line, Int error) :
1620
+ LocalException(file, line),
1621
+ error(error)
1622
1622
  {
1623
1623
  }
1624
1624
 
@@ -1644,13 +1644,13 @@ Ice::SyscallException::ice_throw() const
1644
1644
  throw *this;
1645
1645
  }
1646
1646
 
1647
- Ice::SocketException::SocketException(const char* file_, int line_) :
1648
- ::Ice::SyscallException(file_, line_)
1647
+ Ice::SocketException::SocketException(const char* file, int line) :
1648
+ SyscallException(file, line)
1649
1649
  {
1650
1650
  }
1651
1651
 
1652
- Ice::SocketException::SocketException(const char* file_, int line_, ::Ice::Int iceP_error) :
1653
- ::Ice::SyscallException(file_, line_, iceP_error)
1652
+ Ice::SocketException::SocketException(const char* file, int line, Int error) :
1653
+ SyscallException(file, line, error)
1654
1654
  {
1655
1655
  }
1656
1656
 
@@ -1676,14 +1676,14 @@ Ice::SocketException::ice_throw() const
1676
1676
  throw *this;
1677
1677
  }
1678
1678
 
1679
- Ice::CFNetworkException::CFNetworkException(const char* file_, int line_) :
1680
- ::Ice::SocketException(file_, line_)
1679
+ Ice::CFNetworkException::CFNetworkException(const char* file, int line) :
1680
+ SocketException(file, line)
1681
1681
  {
1682
1682
  }
1683
1683
 
1684
- Ice::CFNetworkException::CFNetworkException(const char* file_, int line_, ::Ice::Int iceP_error, const ::std::string& iceP_domain) :
1685
- ::Ice::SocketException(file_, line_, iceP_error),
1686
- domain(iceP_domain)
1684
+ Ice::CFNetworkException::CFNetworkException(const char* file, int line, Int error, const ::std::string& domain) :
1685
+ SocketException(file, line, error),
1686
+ domain(domain)
1687
1687
  {
1688
1688
  }
1689
1689
 
@@ -1709,14 +1709,14 @@ Ice::CFNetworkException::ice_throw() const
1709
1709
  throw *this;
1710
1710
  }
1711
1711
 
1712
- Ice::FileException::FileException(const char* file_, int line_) :
1713
- ::Ice::SyscallException(file_, line_)
1712
+ Ice::FileException::FileException(const char* file, int line) :
1713
+ SyscallException(file, line)
1714
1714
  {
1715
1715
  }
1716
1716
 
1717
- Ice::FileException::FileException(const char* file_, int line_, ::Ice::Int iceP_error, const ::std::string& iceP_path) :
1718
- ::Ice::SyscallException(file_, line_, iceP_error),
1719
- path(iceP_path)
1717
+ Ice::FileException::FileException(const char* file, int line, Int error, const ::std::string& path) :
1718
+ SyscallException(file, line, error),
1719
+ path(path)
1720
1720
  {
1721
1721
  }
1722
1722
 
@@ -1742,13 +1742,13 @@ Ice::FileException::ice_throw() const
1742
1742
  throw *this;
1743
1743
  }
1744
1744
 
1745
- Ice::ConnectFailedException::ConnectFailedException(const char* file_, int line_) :
1746
- ::Ice::SocketException(file_, line_)
1745
+ Ice::ConnectFailedException::ConnectFailedException(const char* file, int line) :
1746
+ SocketException(file, line)
1747
1747
  {
1748
1748
  }
1749
1749
 
1750
- Ice::ConnectFailedException::ConnectFailedException(const char* file_, int line_, ::Ice::Int iceP_error) :
1751
- ::Ice::SocketException(file_, line_, iceP_error)
1750
+ Ice::ConnectFailedException::ConnectFailedException(const char* file, int line, Int error) :
1751
+ SocketException(file, line, error)
1752
1752
  {
1753
1753
  }
1754
1754
 
@@ -1774,13 +1774,13 @@ Ice::ConnectFailedException::ice_throw() const
1774
1774
  throw *this;
1775
1775
  }
1776
1776
 
1777
- Ice::ConnectionRefusedException::ConnectionRefusedException(const char* file_, int line_) :
1778
- ::Ice::ConnectFailedException(file_, line_)
1777
+ Ice::ConnectionRefusedException::ConnectionRefusedException(const char* file, int line) :
1778
+ ConnectFailedException(file, line)
1779
1779
  {
1780
1780
  }
1781
1781
 
1782
- Ice::ConnectionRefusedException::ConnectionRefusedException(const char* file_, int line_, ::Ice::Int iceP_error) :
1783
- ::Ice::ConnectFailedException(file_, line_, iceP_error)
1782
+ Ice::ConnectionRefusedException::ConnectionRefusedException(const char* file, int line, Int error) :
1783
+ ConnectFailedException(file, line, error)
1784
1784
  {
1785
1785
  }
1786
1786
 
@@ -1806,13 +1806,13 @@ Ice::ConnectionRefusedException::ice_throw() const
1806
1806
  throw *this;
1807
1807
  }
1808
1808
 
1809
- Ice::ConnectionLostException::ConnectionLostException(const char* file_, int line_) :
1810
- ::Ice::SocketException(file_, line_)
1809
+ Ice::ConnectionLostException::ConnectionLostException(const char* file, int line) :
1810
+ SocketException(file, line)
1811
1811
  {
1812
1812
  }
1813
1813
 
1814
- Ice::ConnectionLostException::ConnectionLostException(const char* file_, int line_, ::Ice::Int iceP_error) :
1815
- ::Ice::SocketException(file_, line_, iceP_error)
1814
+ Ice::ConnectionLostException::ConnectionLostException(const char* file, int line, Int error) :
1815
+ SocketException(file, line, error)
1816
1816
  {
1817
1817
  }
1818
1818
 
@@ -1838,16 +1838,16 @@ Ice::ConnectionLostException::ice_throw() const
1838
1838
  throw *this;
1839
1839
  }
1840
1840
 
1841
- Ice::DNSException::DNSException(const char* file_, int line_) :
1842
- ::Ice::LocalException(file_, line_),
1841
+ Ice::DNSException::DNSException(const char* file, int line) :
1842
+ LocalException(file, line),
1843
1843
  error(0)
1844
1844
  {
1845
1845
  }
1846
1846
 
1847
- Ice::DNSException::DNSException(const char* file_, int line_, ::Ice::Int iceP_error, const ::std::string& iceP_host) :
1848
- ::Ice::LocalException(file_, line_),
1849
- error(iceP_error),
1850
- host(iceP_host)
1847
+ Ice::DNSException::DNSException(const char* file, int line, Int error, const ::std::string& host) :
1848
+ LocalException(file, line),
1849
+ error(error),
1850
+ host(host)
1851
1851
  {
1852
1852
  }
1853
1853
 
@@ -1873,8 +1873,8 @@ Ice::DNSException::ice_throw() const
1873
1873
  throw *this;
1874
1874
  }
1875
1875
 
1876
- Ice::OperationInterruptedException::OperationInterruptedException(const char* file_, int line_) :
1877
- ::Ice::LocalException(file_, line_)
1876
+ Ice::OperationInterruptedException::OperationInterruptedException(const char* file, int line) :
1877
+ LocalException(file, line)
1878
1878
  {
1879
1879
  }
1880
1880
 
@@ -1900,8 +1900,8 @@ Ice::OperationInterruptedException::ice_throw() const
1900
1900
  throw *this;
1901
1901
  }
1902
1902
 
1903
- Ice::TimeoutException::TimeoutException(const char* file_, int line_) :
1904
- ::Ice::LocalException(file_, line_)
1903
+ Ice::TimeoutException::TimeoutException(const char* file, int line) :
1904
+ LocalException(file, line)
1905
1905
  {
1906
1906
  }
1907
1907
 
@@ -1927,8 +1927,8 @@ Ice::TimeoutException::ice_throw() const
1927
1927
  throw *this;
1928
1928
  }
1929
1929
 
1930
- Ice::ConnectTimeoutException::ConnectTimeoutException(const char* file_, int line_) :
1931
- ::Ice::TimeoutException(file_, line_)
1930
+ Ice::ConnectTimeoutException::ConnectTimeoutException(const char* file, int line) :
1931
+ TimeoutException(file, line)
1932
1932
  {
1933
1933
  }
1934
1934
 
@@ -1954,8 +1954,8 @@ Ice::ConnectTimeoutException::ice_throw() const
1954
1954
  throw *this;
1955
1955
  }
1956
1956
 
1957
- Ice::CloseTimeoutException::CloseTimeoutException(const char* file_, int line_) :
1958
- ::Ice::TimeoutException(file_, line_)
1957
+ Ice::CloseTimeoutException::CloseTimeoutException(const char* file, int line) :
1958
+ TimeoutException(file, line)
1959
1959
  {
1960
1960
  }
1961
1961
 
@@ -1981,8 +1981,8 @@ Ice::CloseTimeoutException::ice_throw() const
1981
1981
  throw *this;
1982
1982
  }
1983
1983
 
1984
- Ice::ConnectionTimeoutException::ConnectionTimeoutException(const char* file_, int line_) :
1985
- ::Ice::TimeoutException(file_, line_)
1984
+ Ice::ConnectionTimeoutException::ConnectionTimeoutException(const char* file, int line) :
1985
+ TimeoutException(file, line)
1986
1986
  {
1987
1987
  }
1988
1988
 
@@ -2008,8 +2008,8 @@ Ice::ConnectionTimeoutException::ice_throw() const
2008
2008
  throw *this;
2009
2009
  }
2010
2010
 
2011
- Ice::InvocationTimeoutException::InvocationTimeoutException(const char* file_, int line_) :
2012
- ::Ice::TimeoutException(file_, line_)
2011
+ Ice::InvocationTimeoutException::InvocationTimeoutException(const char* file, int line) :
2012
+ TimeoutException(file, line)
2013
2013
  {
2014
2014
  }
2015
2015
 
@@ -2035,8 +2035,8 @@ Ice::InvocationTimeoutException::ice_throw() const
2035
2035
  throw *this;
2036
2036
  }
2037
2037
 
2038
- Ice::InvocationCanceledException::InvocationCanceledException(const char* file_, int line_) :
2039
- ::Ice::LocalException(file_, line_)
2038
+ Ice::InvocationCanceledException::InvocationCanceledException(const char* file, int line) :
2039
+ LocalException(file, line)
2040
2040
  {
2041
2041
  }
2042
2042
 
@@ -2062,14 +2062,14 @@ Ice::InvocationCanceledException::ice_throw() const
2062
2062
  throw *this;
2063
2063
  }
2064
2064
 
2065
- Ice::ProtocolException::ProtocolException(const char* file_, int line_) :
2066
- ::Ice::LocalException(file_, line_)
2065
+ Ice::ProtocolException::ProtocolException(const char* file, int line) :
2066
+ LocalException(file, line)
2067
2067
  {
2068
2068
  }
2069
2069
 
2070
- Ice::ProtocolException::ProtocolException(const char* file_, int line_, const ::std::string& iceP_reason) :
2071
- ::Ice::LocalException(file_, line_),
2072
- reason(iceP_reason)
2070
+ Ice::ProtocolException::ProtocolException(const char* file, int line, const ::std::string& reason) :
2071
+ LocalException(file, line),
2072
+ reason(reason)
2073
2073
  {
2074
2074
  }
2075
2075
 
@@ -2095,14 +2095,14 @@ Ice::ProtocolException::ice_throw() const
2095
2095
  throw *this;
2096
2096
  }
2097
2097
 
2098
- Ice::BadMagicException::BadMagicException(const char* file_, int line_) :
2099
- ::Ice::ProtocolException(file_, line_)
2098
+ Ice::BadMagicException::BadMagicException(const char* file, int line) :
2099
+ ProtocolException(file, line)
2100
2100
  {
2101
2101
  }
2102
2102
 
2103
- Ice::BadMagicException::BadMagicException(const char* file_, int line_, const ::std::string& iceP_reason, const ::Ice::ByteSeq& iceP_badMagic) :
2104
- ::Ice::ProtocolException(file_, line_, iceP_reason),
2105
- badMagic(iceP_badMagic)
2103
+ Ice::BadMagicException::BadMagicException(const char* file, int line, const ::std::string& reason, const ByteSeq& badMagic) :
2104
+ ProtocolException(file, line, reason),
2105
+ badMagic(badMagic)
2106
2106
  {
2107
2107
  }
2108
2108
 
@@ -2128,15 +2128,15 @@ Ice::BadMagicException::ice_throw() const
2128
2128
  throw *this;
2129
2129
  }
2130
2130
 
2131
- Ice::UnsupportedProtocolException::UnsupportedProtocolException(const char* file_, int line_) :
2132
- ::Ice::ProtocolException(file_, line_)
2131
+ Ice::UnsupportedProtocolException::UnsupportedProtocolException(const char* file, int line) :
2132
+ ProtocolException(file, line)
2133
2133
  {
2134
2134
  }
2135
2135
 
2136
- Ice::UnsupportedProtocolException::UnsupportedProtocolException(const char* file_, int line_, const ::std::string& iceP_reason, const ::Ice::ProtocolVersion& iceP_bad, const ::Ice::ProtocolVersion& iceP_supported) :
2137
- ::Ice::ProtocolException(file_, line_, iceP_reason),
2138
- bad(iceP_bad),
2139
- supported(iceP_supported)
2136
+ Ice::UnsupportedProtocolException::UnsupportedProtocolException(const char* file, int line, const ::std::string& reason, const ProtocolVersion& bad, const ProtocolVersion& supported) :
2137
+ ProtocolException(file, line, reason),
2138
+ bad(bad),
2139
+ supported(supported)
2140
2140
  {
2141
2141
  }
2142
2142
 
@@ -2162,15 +2162,15 @@ Ice::UnsupportedProtocolException::ice_throw() const
2162
2162
  throw *this;
2163
2163
  }
2164
2164
 
2165
- Ice::UnsupportedEncodingException::UnsupportedEncodingException(const char* file_, int line_) :
2166
- ::Ice::ProtocolException(file_, line_)
2165
+ Ice::UnsupportedEncodingException::UnsupportedEncodingException(const char* file, int line) :
2166
+ ProtocolException(file, line)
2167
2167
  {
2168
2168
  }
2169
2169
 
2170
- Ice::UnsupportedEncodingException::UnsupportedEncodingException(const char* file_, int line_, const ::std::string& iceP_reason, const ::Ice::EncodingVersion& iceP_bad, const ::Ice::EncodingVersion& iceP_supported) :
2171
- ::Ice::ProtocolException(file_, line_, iceP_reason),
2172
- bad(iceP_bad),
2173
- supported(iceP_supported)
2170
+ Ice::UnsupportedEncodingException::UnsupportedEncodingException(const char* file, int line, const ::std::string& reason, const EncodingVersion& bad, const EncodingVersion& supported) :
2171
+ ProtocolException(file, line, reason),
2172
+ bad(bad),
2173
+ supported(supported)
2174
2174
  {
2175
2175
  }
2176
2176
 
@@ -2196,13 +2196,13 @@ Ice::UnsupportedEncodingException::ice_throw() const
2196
2196
  throw *this;
2197
2197
  }
2198
2198
 
2199
- Ice::UnknownMessageException::UnknownMessageException(const char* file_, int line_) :
2200
- ::Ice::ProtocolException(file_, line_)
2199
+ Ice::UnknownMessageException::UnknownMessageException(const char* file, int line) :
2200
+ ProtocolException(file, line)
2201
2201
  {
2202
2202
  }
2203
2203
 
2204
- Ice::UnknownMessageException::UnknownMessageException(const char* file_, int line_, const ::std::string& iceP_reason) :
2205
- ::Ice::ProtocolException(file_, line_, iceP_reason)
2204
+ Ice::UnknownMessageException::UnknownMessageException(const char* file, int line, const ::std::string& reason) :
2205
+ ProtocolException(file, line, reason)
2206
2206
  {
2207
2207
  }
2208
2208
 
@@ -2228,13 +2228,13 @@ Ice::UnknownMessageException::ice_throw() const
2228
2228
  throw *this;
2229
2229
  }
2230
2230
 
2231
- Ice::ConnectionNotValidatedException::ConnectionNotValidatedException(const char* file_, int line_) :
2232
- ::Ice::ProtocolException(file_, line_)
2231
+ Ice::ConnectionNotValidatedException::ConnectionNotValidatedException(const char* file, int line) :
2232
+ ProtocolException(file, line)
2233
2233
  {
2234
2234
  }
2235
2235
 
2236
- Ice::ConnectionNotValidatedException::ConnectionNotValidatedException(const char* file_, int line_, const ::std::string& iceP_reason) :
2237
- ::Ice::ProtocolException(file_, line_, iceP_reason)
2236
+ Ice::ConnectionNotValidatedException::ConnectionNotValidatedException(const char* file, int line, const ::std::string& reason) :
2237
+ ProtocolException(file, line, reason)
2238
2238
  {
2239
2239
  }
2240
2240
 
@@ -2260,13 +2260,13 @@ Ice::ConnectionNotValidatedException::ice_throw() const
2260
2260
  throw *this;
2261
2261
  }
2262
2262
 
2263
- Ice::UnknownRequestIdException::UnknownRequestIdException(const char* file_, int line_) :
2264
- ::Ice::ProtocolException(file_, line_)
2263
+ Ice::UnknownRequestIdException::UnknownRequestIdException(const char* file, int line) :
2264
+ ProtocolException(file, line)
2265
2265
  {
2266
2266
  }
2267
2267
 
2268
- Ice::UnknownRequestIdException::UnknownRequestIdException(const char* file_, int line_, const ::std::string& iceP_reason) :
2269
- ::Ice::ProtocolException(file_, line_, iceP_reason)
2268
+ Ice::UnknownRequestIdException::UnknownRequestIdException(const char* file, int line, const ::std::string& reason) :
2269
+ ProtocolException(file, line, reason)
2270
2270
  {
2271
2271
  }
2272
2272
 
@@ -2292,13 +2292,13 @@ Ice::UnknownRequestIdException::ice_throw() const
2292
2292
  throw *this;
2293
2293
  }
2294
2294
 
2295
- Ice::UnknownReplyStatusException::UnknownReplyStatusException(const char* file_, int line_) :
2296
- ::Ice::ProtocolException(file_, line_)
2295
+ Ice::UnknownReplyStatusException::UnknownReplyStatusException(const char* file, int line) :
2296
+ ProtocolException(file, line)
2297
2297
  {
2298
2298
  }
2299
2299
 
2300
- Ice::UnknownReplyStatusException::UnknownReplyStatusException(const char* file_, int line_, const ::std::string& iceP_reason) :
2301
- ::Ice::ProtocolException(file_, line_, iceP_reason)
2300
+ Ice::UnknownReplyStatusException::UnknownReplyStatusException(const char* file, int line, const ::std::string& reason) :
2301
+ ProtocolException(file, line, reason)
2302
2302
  {
2303
2303
  }
2304
2304
 
@@ -2324,13 +2324,13 @@ Ice::UnknownReplyStatusException::ice_throw() const
2324
2324
  throw *this;
2325
2325
  }
2326
2326
 
2327
- Ice::CloseConnectionException::CloseConnectionException(const char* file_, int line_) :
2328
- ::Ice::ProtocolException(file_, line_)
2327
+ Ice::CloseConnectionException::CloseConnectionException(const char* file, int line) :
2328
+ ProtocolException(file, line)
2329
2329
  {
2330
2330
  }
2331
2331
 
2332
- Ice::CloseConnectionException::CloseConnectionException(const char* file_, int line_, const ::std::string& iceP_reason) :
2333
- ::Ice::ProtocolException(file_, line_, iceP_reason)
2332
+ Ice::CloseConnectionException::CloseConnectionException(const char* file, int line, const ::std::string& reason) :
2333
+ ProtocolException(file, line, reason)
2334
2334
  {
2335
2335
  }
2336
2336
 
@@ -2356,14 +2356,14 @@ Ice::CloseConnectionException::ice_throw() const
2356
2356
  throw *this;
2357
2357
  }
2358
2358
 
2359
- Ice::ConnectionManuallyClosedException::ConnectionManuallyClosedException(const char* file_, int line_) :
2360
- ::Ice::LocalException(file_, line_)
2359
+ Ice::ConnectionManuallyClosedException::ConnectionManuallyClosedException(const char* file, int line) :
2360
+ LocalException(file, line)
2361
2361
  {
2362
2362
  }
2363
2363
 
2364
- Ice::ConnectionManuallyClosedException::ConnectionManuallyClosedException(const char* file_, int line_, bool iceP_graceful) :
2365
- ::Ice::LocalException(file_, line_),
2366
- graceful(iceP_graceful)
2364
+ Ice::ConnectionManuallyClosedException::ConnectionManuallyClosedException(const char* file, int line, bool graceful) :
2365
+ LocalException(file, line),
2366
+ graceful(graceful)
2367
2367
  {
2368
2368
  }
2369
2369
 
@@ -2389,13 +2389,13 @@ Ice::ConnectionManuallyClosedException::ice_throw() const
2389
2389
  throw *this;
2390
2390
  }
2391
2391
 
2392
- Ice::IllegalMessageSizeException::IllegalMessageSizeException(const char* file_, int line_) :
2393
- ::Ice::ProtocolException(file_, line_)
2392
+ Ice::IllegalMessageSizeException::IllegalMessageSizeException(const char* file, int line) :
2393
+ ProtocolException(file, line)
2394
2394
  {
2395
2395
  }
2396
2396
 
2397
- Ice::IllegalMessageSizeException::IllegalMessageSizeException(const char* file_, int line_, const ::std::string& iceP_reason) :
2398
- ::Ice::ProtocolException(file_, line_, iceP_reason)
2397
+ Ice::IllegalMessageSizeException::IllegalMessageSizeException(const char* file, int line, const ::std::string& reason) :
2398
+ ProtocolException(file, line, reason)
2399
2399
  {
2400
2400
  }
2401
2401
 
@@ -2421,13 +2421,13 @@ Ice::IllegalMessageSizeException::ice_throw() const
2421
2421
  throw *this;
2422
2422
  }
2423
2423
 
2424
- Ice::CompressionException::CompressionException(const char* file_, int line_) :
2425
- ::Ice::ProtocolException(file_, line_)
2424
+ Ice::CompressionException::CompressionException(const char* file, int line) :
2425
+ ProtocolException(file, line)
2426
2426
  {
2427
2427
  }
2428
2428
 
2429
- Ice::CompressionException::CompressionException(const char* file_, int line_, const ::std::string& iceP_reason) :
2430
- ::Ice::ProtocolException(file_, line_, iceP_reason)
2429
+ Ice::CompressionException::CompressionException(const char* file, int line, const ::std::string& reason) :
2430
+ ProtocolException(file, line, reason)
2431
2431
  {
2432
2432
  }
2433
2433
 
@@ -2453,13 +2453,13 @@ Ice::CompressionException::ice_throw() const
2453
2453
  throw *this;
2454
2454
  }
2455
2455
 
2456
- Ice::DatagramLimitException::DatagramLimitException(const char* file_, int line_) :
2457
- ::Ice::ProtocolException(file_, line_)
2456
+ Ice::DatagramLimitException::DatagramLimitException(const char* file, int line) :
2457
+ ProtocolException(file, line)
2458
2458
  {
2459
2459
  }
2460
2460
 
2461
- Ice::DatagramLimitException::DatagramLimitException(const char* file_, int line_, const ::std::string& iceP_reason) :
2462
- ::Ice::ProtocolException(file_, line_, iceP_reason)
2461
+ Ice::DatagramLimitException::DatagramLimitException(const char* file, int line, const ::std::string& reason) :
2462
+ ProtocolException(file, line, reason)
2463
2463
  {
2464
2464
  }
2465
2465
 
@@ -2485,13 +2485,13 @@ Ice::DatagramLimitException::ice_throw() const
2485
2485
  throw *this;
2486
2486
  }
2487
2487
 
2488
- Ice::MarshalException::MarshalException(const char* file_, int line_) :
2489
- ::Ice::ProtocolException(file_, line_)
2488
+ Ice::MarshalException::MarshalException(const char* file, int line) :
2489
+ ProtocolException(file, line)
2490
2490
  {
2491
2491
  }
2492
2492
 
2493
- Ice::MarshalException::MarshalException(const char* file_, int line_, const ::std::string& iceP_reason) :
2494
- ::Ice::ProtocolException(file_, line_, iceP_reason)
2493
+ Ice::MarshalException::MarshalException(const char* file, int line, const ::std::string& reason) :
2494
+ ProtocolException(file, line, reason)
2495
2495
  {
2496
2496
  }
2497
2497
 
@@ -2517,13 +2517,13 @@ Ice::MarshalException::ice_throw() const
2517
2517
  throw *this;
2518
2518
  }
2519
2519
 
2520
- Ice::ProxyUnmarshalException::ProxyUnmarshalException(const char* file_, int line_) :
2521
- ::Ice::MarshalException(file_, line_)
2520
+ Ice::ProxyUnmarshalException::ProxyUnmarshalException(const char* file, int line) :
2521
+ MarshalException(file, line)
2522
2522
  {
2523
2523
  }
2524
2524
 
2525
- Ice::ProxyUnmarshalException::ProxyUnmarshalException(const char* file_, int line_, const ::std::string& iceP_reason) :
2526
- ::Ice::MarshalException(file_, line_, iceP_reason)
2525
+ Ice::ProxyUnmarshalException::ProxyUnmarshalException(const char* file, int line, const ::std::string& reason) :
2526
+ MarshalException(file, line, reason)
2527
2527
  {
2528
2528
  }
2529
2529
 
@@ -2549,13 +2549,13 @@ Ice::ProxyUnmarshalException::ice_throw() const
2549
2549
  throw *this;
2550
2550
  }
2551
2551
 
2552
- Ice::UnmarshalOutOfBoundsException::UnmarshalOutOfBoundsException(const char* file_, int line_) :
2553
- ::Ice::MarshalException(file_, line_)
2552
+ Ice::UnmarshalOutOfBoundsException::UnmarshalOutOfBoundsException(const char* file, int line) :
2553
+ MarshalException(file, line)
2554
2554
  {
2555
2555
  }
2556
2556
 
2557
- Ice::UnmarshalOutOfBoundsException::UnmarshalOutOfBoundsException(const char* file_, int line_, const ::std::string& iceP_reason) :
2558
- ::Ice::MarshalException(file_, line_, iceP_reason)
2557
+ Ice::UnmarshalOutOfBoundsException::UnmarshalOutOfBoundsException(const char* file, int line, const ::std::string& reason) :
2558
+ MarshalException(file, line, reason)
2559
2559
  {
2560
2560
  }
2561
2561
 
@@ -2581,14 +2581,14 @@ Ice::UnmarshalOutOfBoundsException::ice_throw() const
2581
2581
  throw *this;
2582
2582
  }
2583
2583
 
2584
- Ice::NoValueFactoryException::NoValueFactoryException(const char* file_, int line_) :
2585
- ::Ice::MarshalException(file_, line_)
2584
+ Ice::NoValueFactoryException::NoValueFactoryException(const char* file, int line) :
2585
+ MarshalException(file, line)
2586
2586
  {
2587
2587
  }
2588
2588
 
2589
- Ice::NoValueFactoryException::NoValueFactoryException(const char* file_, int line_, const ::std::string& iceP_reason, const ::std::string& iceP_type) :
2590
- ::Ice::MarshalException(file_, line_, iceP_reason),
2591
- type(iceP_type)
2589
+ Ice::NoValueFactoryException::NoValueFactoryException(const char* file, int line, const ::std::string& reason, const ::std::string& type) :
2590
+ MarshalException(file, line, reason),
2591
+ type(type)
2592
2592
  {
2593
2593
  }
2594
2594
 
@@ -2614,15 +2614,15 @@ Ice::NoValueFactoryException::ice_throw() const
2614
2614
  throw *this;
2615
2615
  }
2616
2616
 
2617
- Ice::UnexpectedObjectException::UnexpectedObjectException(const char* file_, int line_) :
2618
- ::Ice::MarshalException(file_, line_)
2617
+ Ice::UnexpectedObjectException::UnexpectedObjectException(const char* file, int line) :
2618
+ MarshalException(file, line)
2619
2619
  {
2620
2620
  }
2621
2621
 
2622
- Ice::UnexpectedObjectException::UnexpectedObjectException(const char* file_, int line_, const ::std::string& iceP_reason, const ::std::string& iceP_type, const ::std::string& iceP_expectedType) :
2623
- ::Ice::MarshalException(file_, line_, iceP_reason),
2624
- type(iceP_type),
2625
- expectedType(iceP_expectedType)
2622
+ Ice::UnexpectedObjectException::UnexpectedObjectException(const char* file, int line, const ::std::string& reason, const ::std::string& type, const ::std::string& expectedType) :
2623
+ MarshalException(file, line, reason),
2624
+ type(type),
2625
+ expectedType(expectedType)
2626
2626
  {
2627
2627
  }
2628
2628
 
@@ -2648,13 +2648,13 @@ Ice::UnexpectedObjectException::ice_throw() const
2648
2648
  throw *this;
2649
2649
  }
2650
2650
 
2651
- Ice::MemoryLimitException::MemoryLimitException(const char* file_, int line_) :
2652
- ::Ice::MarshalException(file_, line_)
2651
+ Ice::MemoryLimitException::MemoryLimitException(const char* file, int line) :
2652
+ MarshalException(file, line)
2653
2653
  {
2654
2654
  }
2655
2655
 
2656
- Ice::MemoryLimitException::MemoryLimitException(const char* file_, int line_, const ::std::string& iceP_reason) :
2657
- ::Ice::MarshalException(file_, line_, iceP_reason)
2656
+ Ice::MemoryLimitException::MemoryLimitException(const char* file, int line, const ::std::string& reason) :
2657
+ MarshalException(file, line, reason)
2658
2658
  {
2659
2659
  }
2660
2660
 
@@ -2680,13 +2680,13 @@ Ice::MemoryLimitException::ice_throw() const
2680
2680
  throw *this;
2681
2681
  }
2682
2682
 
2683
- Ice::StringConversionException::StringConversionException(const char* file_, int line_) :
2684
- ::Ice::MarshalException(file_, line_)
2683
+ Ice::StringConversionException::StringConversionException(const char* file, int line) :
2684
+ MarshalException(file, line)
2685
2685
  {
2686
2686
  }
2687
2687
 
2688
- Ice::StringConversionException::StringConversionException(const char* file_, int line_, const ::std::string& iceP_reason) :
2689
- ::Ice::MarshalException(file_, line_, iceP_reason)
2688
+ Ice::StringConversionException::StringConversionException(const char* file, int line, const ::std::string& reason) :
2689
+ MarshalException(file, line, reason)
2690
2690
  {
2691
2691
  }
2692
2692
 
@@ -2712,13 +2712,13 @@ Ice::StringConversionException::ice_throw() const
2712
2712
  throw *this;
2713
2713
  }
2714
2714
 
2715
- Ice::EncapsulationException::EncapsulationException(const char* file_, int line_) :
2716
- ::Ice::MarshalException(file_, line_)
2715
+ Ice::EncapsulationException::EncapsulationException(const char* file, int line) :
2716
+ MarshalException(file, line)
2717
2717
  {
2718
2718
  }
2719
2719
 
2720
- Ice::EncapsulationException::EncapsulationException(const char* file_, int line_, const ::std::string& iceP_reason) :
2721
- ::Ice::MarshalException(file_, line_, iceP_reason)
2720
+ Ice::EncapsulationException::EncapsulationException(const char* file, int line, const ::std::string& reason) :
2721
+ MarshalException(file, line, reason)
2722
2722
  {
2723
2723
  }
2724
2724
 
@@ -2744,14 +2744,14 @@ Ice::EncapsulationException::ice_throw() const
2744
2744
  throw *this;
2745
2745
  }
2746
2746
 
2747
- Ice::FeatureNotSupportedException::FeatureNotSupportedException(const char* file_, int line_) :
2748
- ::Ice::LocalException(file_, line_)
2747
+ Ice::FeatureNotSupportedException::FeatureNotSupportedException(const char* file, int line) :
2748
+ LocalException(file, line)
2749
2749
  {
2750
2750
  }
2751
2751
 
2752
- Ice::FeatureNotSupportedException::FeatureNotSupportedException(const char* file_, int line_, const ::std::string& iceP_unsupportedFeature) :
2753
- ::Ice::LocalException(file_, line_),
2754
- unsupportedFeature(iceP_unsupportedFeature)
2752
+ Ice::FeatureNotSupportedException::FeatureNotSupportedException(const char* file, int line, const ::std::string& unsupportedFeature) :
2753
+ LocalException(file, line),
2754
+ unsupportedFeature(unsupportedFeature)
2755
2755
  {
2756
2756
  }
2757
2757
 
@@ -2777,14 +2777,14 @@ Ice::FeatureNotSupportedException::ice_throw() const
2777
2777
  throw *this;
2778
2778
  }
2779
2779
 
2780
- Ice::SecurityException::SecurityException(const char* file_, int line_) :
2781
- ::Ice::LocalException(file_, line_)
2780
+ Ice::SecurityException::SecurityException(const char* file, int line) :
2781
+ LocalException(file, line)
2782
2782
  {
2783
2783
  }
2784
2784
 
2785
- Ice::SecurityException::SecurityException(const char* file_, int line_, const ::std::string& iceP_reason) :
2786
- ::Ice::LocalException(file_, line_),
2787
- reason(iceP_reason)
2785
+ Ice::SecurityException::SecurityException(const char* file, int line, const ::std::string& reason) :
2786
+ LocalException(file, line),
2787
+ reason(reason)
2788
2788
  {
2789
2789
  }
2790
2790
 
@@ -2810,8 +2810,8 @@ Ice::SecurityException::ice_throw() const
2810
2810
  throw *this;
2811
2811
  }
2812
2812
 
2813
- Ice::FixedProxyException::FixedProxyException(const char* file_, int line_) :
2814
- ::Ice::LocalException(file_, line_)
2813
+ Ice::FixedProxyException::FixedProxyException(const char* file, int line) :
2814
+ LocalException(file, line)
2815
2815
  {
2816
2816
  }
2817
2817
 
@@ -2837,8 +2837,8 @@ Ice::FixedProxyException::ice_throw() const
2837
2837
  throw *this;
2838
2838
  }
2839
2839
 
2840
- Ice::ResponseSentException::ResponseSentException(const char* file_, int line_) :
2841
- ::Ice::LocalException(file_, line_)
2840
+ Ice::ResponseSentException::ResponseSentException(const char* file, int line) :
2841
+ LocalException(file, line)
2842
2842
  {
2843
2843
  }
2844
2844