Strip "ws" from test names. Update TODO.

Also, rename wstest to load.
This commit is contained in:
Joel Martin 2011-01-19 13:19:47 -06:00
parent 9c4cf4ada2
commit 6ff5dfa02d
8 changed files with 7 additions and 1 deletions

View File

@ -1 +1,7 @@
- wstelnet: support CSI L and CSI M
- mod_websockify module for Apache
- create gevent version:
http://nichol.as/benchmark-of-python-web-servers
http://n01se.net/paste/QXO

View File

@ -260,7 +260,6 @@ Connection: Upgrade\r
# Now get the data from the socket
handshake = retsock.recv(4096)
#self.msg("handshake: " + repr(handshake))
if len(handshake) == 0:
raise self.EClose("Client closed during handshake")
@ -278,6 +277,7 @@ Connection: Upgrade\r
else:
raise self.EClose("")
#self.msg("handshake: " + repr(handshake))
# Parse client WebSockets handshake
h = self.parse_handshake(handshake)