summaryrefslogtreecommitdiffstats
path: root/dom/base/test/file_websocket_hello_wsh.py
diff options
context:
space:
mode:
Diffstat (limited to 'dom/base/test/file_websocket_hello_wsh.py')
-rw-r--r--dom/base/test/file_websocket_hello_wsh.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/dom/base/test/file_websocket_hello_wsh.py b/dom/base/test/file_websocket_hello_wsh.py
new file mode 100644
index 000000000..9f7575439
--- /dev/null
+++ b/dom/base/test/file_websocket_hello_wsh.py
@@ -0,0 +1,10 @@
+from mod_pywebsocket import msgutil
+
+def web_socket_do_extra_handshake(request):
+ pass
+
+def web_socket_transfer_data(request):
+ resp = "Test"
+ if msgutil.receive_message(request) == "data":
+ resp = "Hello world!"
+ msgutil.send_message(request, resp)