summaryrefslogtreecommitdiff
path: root/tests/echo.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/echo.py')
-rwxr-xr-xtests/echo.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/echo.py b/tests/echo.py
index 1d46d50..6ad0651 100755
--- a/tests/echo.py
+++ b/tests/echo.py
@@ -28,21 +28,21 @@ class WebSocketEcho(WebSocketServer):
cqueue = []
c_pend = 0
cpartial = ""
- rlist = [self.client]
+ rlist = [self.request]
while True:
wlist = []
- if cqueue or c_pend: wlist.append(self.client)
+ if cqueue or c_pend: wlist.append(self.request)
ins, outs, excepts = select.select(rlist, wlist, [], 1)
if excepts: raise Exception("Socket exception")
- if self.client in outs:
+ if self.request in outs:
# Send queued target data to the client
c_pend = self.send_frames(cqueue)
cqueue = []
- if self.client in ins:
+ if self.request in ins:
# Receive client data, decode it, and send it back
frames, closed = self.recv_frames()
cqueue.extend(frames)