|
@ -187,15 +187,18 @@ class BaseServer: |
|
|
namespace = namespace or '/' |
|
|
namespace = namespace or '/' |
|
|
return self.manager.get_rooms(sid, namespace) |
|
|
return self.manager.get_rooms(sid, namespace) |
|
|
|
|
|
|
|
|
def transport(self, sid): |
|
|
def transport(self, sid, namespace=None): |
|
|
"""Return the name of the transport used by the client. |
|
|
"""Return the name of the transport used by the client. |
|
|
|
|
|
|
|
|
The two possible values returned by this function are ``'polling'`` |
|
|
The two possible values returned by this function are ``'polling'`` |
|
|
and ``'websocket'``. |
|
|
and ``'websocket'``. |
|
|
|
|
|
|
|
|
:param sid: The session of the client. |
|
|
:param sid: The session of the client. |
|
|
|
|
|
:param namespace: The Socket.IO namespace. If this argument is omitted |
|
|
|
|
|
the default namespace is used. |
|
|
""" |
|
|
""" |
|
|
return self.eio.transport(sid) |
|
|
eio_sid = self.manager.eio_sid_from_sid(sid, namespace or '/') |
|
|
|
|
|
return self.eio.transport(eio_sid) |
|
|
|
|
|
|
|
|
def get_environ(self, sid, namespace=None): |
|
|
def get_environ(self, sid, namespace=None): |
|
|
"""Return the WSGI environ dictionary for a client. |
|
|
"""Return the WSGI environ dictionary for a client. |
|
|