How to use the websockify.ProxyRequestHandler.__init__ function in websockify

To help you get started, we’ve selected a few websockify examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github openstack / zun / zun / websocket / websocketproxy.py View on Github external
def __init__(self, *args, **kwargs):
        websockify.ProxyRequestHandler.__init__(self, *args, **kwargs)
github openstack / nova / nova / console / websocketproxy.py View on Github external
def __init__(self, *args, **kwargs):
        self._compute_rpcapi = None
        websockify.ProxyRequestHandler.__init__(self, *args, **kwargs)
github oVirt / ovirt-engine / packaging / services / ovirt-websocket-proxy / ovirt-websocket-proxy.py View on Github external
def __init__(self, retsock, address, proxy, *args, **kwargs):
        self._proxy = proxy
        websockify.ProxyRequestHandler.__init__(self, retsock, address, proxy,
                                                *args, **kwargs)