diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2015-02-17 15:49:00 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2015-02-17 15:49:00 -0330 |
commit | bfb35f122ecb429cf9d869f0331b0899f7b18fe8 (patch) | |
tree | f72951c29ecd08d9f34b0c0da47e3056959444ad /py/python/Ice.py | |
parent | Fixed (ICE-5740) - IcePatch2 has issues with 'large' files. (diff) | |
download | ice-bfb35f122ecb429cf9d869f0331b0899f7b18fe8.tar.bz2 ice-bfb35f122ecb429cf9d869f0331b0899f7b18fe8.tar.xz ice-bfb35f122ecb429cf9d869f0331b0899f7b18fe8.zip |
ICE-6313 Add Python/Ruby/PHP support for WSEndpointInfo / WSConnectionInfo
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index 9c16f27d587..7133fd5956f 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -458,6 +458,8 @@ del TCPEndpointInfo TCPEndpointInfo = IcePy.TCPEndpointInfo del UDPEndpointInfo UDPEndpointInfo = IcePy.UDPEndpointInfo +del WSEndpointInfo +WSEndpointInfo = IcePy.WSEndpointInfo del OpaqueEndpointInfo OpaqueEndpointInfo = IcePy.OpaqueEndpointInfo @@ -472,6 +474,8 @@ del TCPConnectionInfo TCPConnectionInfo = IcePy.TCPConnectionInfo del UDPConnectionInfo UDPConnectionInfo = IcePy.UDPConnectionInfo +del WSConnectionInfo +WSConnectionInfo = IcePy.WSConnectionInfo class ThreadNotification(object): '''Base class for thread notification callbacks. A subclass must |