diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-03-04 09:10:18 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-03-04 09:10:18 +0100 |
commit | b21a2791675c12b82758583e5024421c91537cd7 (patch) | |
tree | db44f1089cc23665bec372032e0b37be786b0338 /csharp/test/Ice/background/Server.cs | |
parent | More man page fixes (diff) | |
download | ice-b21a2791675c12b82758583e5024421c91537cd7.tar.bz2 ice-b21a2791675c12b82758583e5024421c91537cd7.tar.xz ice-b21a2791675c12b82758583e5024421c91537cd7.zip |
Fixed ICE-3710 - optional routing tables
Diffstat (limited to 'csharp/test/Ice/background/Server.cs')
-rw-r--r-- | csharp/test/Ice/background/Server.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/csharp/test/Ice/background/Server.cs b/csharp/test/Ice/background/Server.cs index 96651378564..775f6df44b9 100644 --- a/csharp/test/Ice/background/Server.cs +++ b/csharp/test/Ice/background/Server.cs @@ -52,8 +52,9 @@ public class Server : TestCommon.Application internal class RouterI : Ice.RouterDisp_ { - public override Ice.ObjectPrx getClientProxy(Ice.Current current) + public override Ice.ObjectPrx getClientProxy(out Ice.Optional<bool> hasRoutingTable, Ice.Current current) { + hasRoutingTable = new Ice.Optional<bool>(true); _controller.checkCallPause(current); return null; } |