1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
// **********************************************************************
//
// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
package test.Ice.info;
import test.Ice.info.Test._TestIntfDisp;
public class TestI extends _TestIntfDisp
{
TestI()
{
}
public void shutdown(Ice.Current current)
{
current.adapter.getCommunicator().shutdown();
}
public java.util.Map<String, String> getEndpointInfoAsContext(Ice.Current c)
{
java.util.Map<String, String> ctx = new java.util.HashMap<String, String>();
Ice.EndpointInfo info = c.con.getEndpoint().getInfo();
ctx.put("timeout", Integer.toString(info.timeout));
ctx.put("compress", info.compress ? "true" : "false");
ctx.put("datagram", info.datagram() ? "true" : "false");
ctx.put("secure", info.datagram() ? "true" : "false");
ctx.put("type", Integer.toString(info.type()));
Ice.IPEndpointInfo ipinfo = (Ice.IPEndpointInfo)info;
ctx.put("host", ipinfo.host);
ctx.put("port", Integer.toString(ipinfo.port));
if(ipinfo instanceof Ice.UDPEndpointInfo)
{
Ice.UDPEndpointInfo udp = (Ice.UDPEndpointInfo)ipinfo;
ctx.put("mcastInterface", udp.mcastInterface);
ctx.put("mcastTtl", Integer.toString(udp.mcastTtl));
}
return ctx;
}
public java.util.Map<String, String> getConnectionInfoAsContext(Ice.Current c)
{
java.util.Map<String, String> ctx = new java.util.HashMap<String, String>();
Ice.ConnectionInfo info = c.con.getInfo();
ctx.put("adapterName", info.adapterName);
ctx.put("incoming", info.incoming ? "true" : "false");
Ice.IPConnectionInfo ipinfo = (Ice.IPConnectionInfo)info;
ctx.put("localAddress", ipinfo.localAddress);
ctx.put("localPort", Integer.toString(ipinfo.localPort));
ctx.put("remoteAddress", ipinfo.remoteAddress);
ctx.put("remotePort", Integer.toString(ipinfo.remotePort));
return ctx;
}
}
|