aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2019-05-12 23:18:03 +0200
committercbdev <cb@cbcdn.com>2019-05-12 23:18:03 +0200
commit10874eb2195d3e6ceed8e8a76aaf4455e41c8683 (patch)
tree1984c7254e1e76ed26e19e757dfd8e6e3f5516de /index.html
parenta170ae3ac205675d86f1a564a51c54d0fbc2a380 (diff)
downloadwebsocksy-10874eb2195d3e6ceed8e8a76aaf4455e41c8683.tar.gz
websocksy-10874eb2195d3e6ceed8e8a76aaf4455e41c8683.tar.bz2
websocksy-10874eb2195d3e6ceed8e8a76aaf4455e41c8683.zip
Client handling
Diffstat (limited to 'index.html')
-rw-r--r--index.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..c0af329
--- /dev/null
+++ b/index.html
@@ -0,0 +1,11 @@
+<html>
+ <head>
+ <script type="text/javascript">
+ function init(){
+ var webSocket = new WebSocket("ws://localhost:8001/");
+ }
+ </script>
+ </head>
+ <body onload="init();">
+ </body>
+</html>