blob: e563c52c7647b8416de3da83e91b93d9650cb196 (
plain)
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
64
65
|
# **********************************************************************
#
# Copyright (c) 2003-2015 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.
#
# **********************************************************************
import Ice, Test
import time
class MyDerivedClassI(Test.TestIntf):
def __init__(self):
self.ctx = None
def shutdown(self, current=None):
current.adapter.getCommunicator().shutdown()
def getEndpointInfoAsContext(self, current):
ctx = {}
info = current.con.getEndpoint().getInfo()
ctx["timeout"] = str(info.timeout)
if info.compress:
ctx["compress"] = "true"
else:
ctx["compress"] ="false"
if info.datagram():
ctx["datagram"] = "true"
else:
ctx["datagram"] ="false"
if info.secure():
ctx["secure"] = "true"
else:
ctx["secure"] ="false"
ctx["type"] = str(info.type())
ctx["host"] = info.host
ctx["port"] = str(info.port)
if isinstance(info, Ice.UDPEndpointInfo):
ctx["protocolMajor"] = str(info.protocolMajor)
ctx["protocolMinor"] = str(info.protocolMinor)
ctx["encodingMajor"] = str(info.encodingMajor)
ctx["encodingMinor"] = str(info.encodingMinor)
ctx["mcastInterface"] = info.mcastInterface
ctx["mcastTtl"] = str(info.mcastTtl)
return ctx
def getConnectionInfoAsContext(self, current):
ctx = {}
info = current.con.getInfo()
ctx["adapterName"] = info.adapterName
if info.incoming:
ctx["incoming"] = "true"
else:
ctx["incoming"] ="false"
ctx["localAddress"] = info.localAddress
ctx["localPort"] = str(info.localPort)
ctx["remoteAddress"] = info.remoteAddress
ctx["remotePort"] = str(info.remotePort)
return ctx
|