| Index: LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-no-cr_wsh.py
|
| diff --git a/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-no-cr_wsh.py b/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-no-cr_wsh.py
|
| deleted file mode 100644
|
| index 6cb34c25dfe829ebd4d6d5574558cefd77472e9d..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/http/tests/websocket/tests/hybi/handshake-fail-by-no-cr_wsh.py
|
| +++ /dev/null
|
| @@ -1,17 +0,0 @@
|
| -from mod_pywebsocket import handshake
|
| -from mod_pywebsocket.handshake.hybi import compute_accept
|
| -
|
| -
|
| -def web_socket_do_extra_handshake(request):
|
| - msg = 'HTTP/1.1 101 Switching Protocols\n' # Does not end with "\r\n".
|
| - msg += 'Upgrade: websocket\r\n'
|
| - msg += 'Connection: Upgrade\r\n'
|
| - msg += 'Sec-WebSocket-Accept: %s\r\n' % compute_accept(request.headers_in['Sec-WebSocket-Key'])[0]
|
| - msg += '\r\n'
|
| - request.connection.write(msg)
|
| - print msg
|
| - raise handshake.AbortedByUserException('Abort the connection') # Prevents pywebsocket from sending its own handshake message.
|
| -
|
| -
|
| -def web_socket_transfer_data(request):
|
| - pass
|
|
|