diff options
author | cbdev <cb@cbcdn.com> | 2019-05-12 23:18:03 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2019-05-12 23:18:03 +0200 |
commit | 10874eb2195d3e6ceed8e8a76aaf4455e41c8683 (patch) | |
tree | 1984c7254e1e76ed26e19e757dfd8e6e3f5516de /index.html | |
parent | a170ae3ac205675d86f1a564a51c54d0fbc2a380 (diff) | |
download | websocksy-10874eb2195d3e6ceed8e8a76aaf4455e41c8683.tar.gz websocksy-10874eb2195d3e6ceed8e8a76aaf4455e41c8683.tar.bz2 websocksy-10874eb2195d3e6ceed8e8a76aaf4455e41c8683.zip |
Client handling
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 11 |
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> |