summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/mongoose/examples/proxy_server/proxy_web_root/app2/index.html
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/mongoose/examples/proxy_server/proxy_web_root/app2/index.html')
-rw-r--r--3rdparty/mongoose/examples/proxy_server/proxy_web_root/app2/index.html37
1 files changed, 0 insertions, 37 deletions
diff --git a/3rdparty/mongoose/examples/proxy_server/proxy_web_root/app2/index.html b/3rdparty/mongoose/examples/proxy_server/proxy_web_root/app2/index.html
deleted file mode 100644
index 28d4beadcdb..00000000000
--- a/3rdparty/mongoose/examples/proxy_server/proxy_web_root/app2/index.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<html>
-<head>
- <title>App2 Index</title>
- <meta charset="utf-8">
- <script>
- window.onload = function() {
- // Using secure websocket connection, wss://
- var ws = new WebSocket('wss://echo.websocket.org');
- var div = document.getElementById('events');
- ws.onmessage = function(ev) {
- var el = document.createElement('div');
- el.innerHTML = 'websocket message: ' + ev.data;
- div.appendChild(el);
- // Keep only last 5 messages in the list
- while (div.childNodes.length > 5) div.removeChild(div.firstChild);
- };
-
- // Send random stuff to the websocket connection periodically.
- // websocket server much echo that stuff back.
- window.setInterval(function() {
- var d = new Date();
- ws.send(d.toString());
- }, 1000);
- };
- </script>
-</head>
-<body>
- <h1>App2 index page. Served locally from the
- the proxy's filesystem.</h1>
- <p>
- Following div shows proxy forwarding of websocket connection, served by
- ws://echo.websocket.org:
- </p>
-
- <div id="events"></div>
-</body>
-</html>