| Index: net/data/websocket/protocol-test_wsh.py
|
| diff --git a/net/data/websocket/protocol-test_wsh.py b/net/data/websocket/protocol-test_wsh.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..378b2e3cf63b470f98fb70dd455c010d9ad851aa
|
| --- /dev/null
|
| +++ b/net/data/websocket/protocol-test_wsh.py
|
| @@ -0,0 +1,19 @@
|
| +# Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +import cgi
|
| +from mod_pywebsocket import msgutil
|
| +
|
| +
|
| +def web_socket_do_extra_handshake(request):
|
| + r = request.ws_resource.split('?', 1)
|
| + if len(r) == 1:
|
| + return
|
| + param = cgi.parse_qs(r[1])
|
| + if 'protocol' in param:
|
| + request.ws_protocol = param['protocol'][0]
|
| +
|
| +
|
| +def web_socket_transfer_data(request):
|
| + msgutil.send_message(request, request.ws_protocol)
|
|
|