-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemos.html
63 lines (51 loc) · 2.75 KB
/
demos.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<html>
<head>
<title>SockIt · Demos</title>
<link href="tutorial.css" rel="stylesheet" type="text/css">
</head>
<body>
<center>
<h1>SockIt · Demos</h1>
<h3><a href="downloads.html">Download</a></h3>
<br/>
<br/>
<a href="index.html">Home</a> · <a href="tutorial.html">Quick Tutorial</a> · <a href="full_tutorial.html">Full Tutorial</a> · <a href="demos.html">Demos</a> · <a href="api_documentation.html">API</a> · <a href="html/index.html">Source Documentation</a> · <a href="developers.html">Developers</a>
<br><br>
</center>
<center>
<div class='section' style='text-align:justify; width:500px;'>
<div>
<h2>Hello World</h2>
<p class="section">Find the simple 'Hello World' demo from the quick tutorial <a href="demos/hello_world/hello_world.html">here</a>, which uses a single TCP client and server to reply to messages on the server, triggering an alert.</p>
</div>
<div>
<h2>Google Hello World</h2>
<p class="section">Find the simple 'Hello World' demo from the introduction that loads <code>www.google.com</code> <a href="demos/google/google.html">here</a>, which uses a single TCP client to request <code>www.google.com</code> and reply to messages on the server, triggering several alert.</p>
</div>
<div>
<h2>Chatroom</h2>
<p class="section">A demo chatroom <a href="demos/chatroom/chatroom_client.html">client</a> and <a href="demos/chatroom/chatroom_server.html">server</a> that uses a single TCP server for the chatroom server, and single TCP client for each chat client.</p>
</div>
<div>
<h2>Peer-to-Peer Chat</h2>
<p class="section">A demo peer to peer chat system can be found <a href="demos/chat/chat.html">here</a>.</p>
</div>
<br/>
<div>
<h2>Empty Page</h2>
<p class="section">An empty that has loaded the SockIt plugin can be found <a href="demos/empty/empty.html">here</a>.</p>
</div>
<div>
<h2>Empty Page with Websockets</h2>
<p class="section">An empty page that has loaded the SockIt plugin and SockIt implementation of websockets can be found <a href="demos/websockets/websockets.html">here</a>.</p>
</div>
</div>
</center>
<div class='section'>
</div>
<br/><br/>
<center>
<a href="index.html">Home</a> · <a href="tutorial.html">Quick Tutorial</a> · <a href="full_tutorial.html">Full Tutorial</a> · <a href="demos.html">Demos</a> · <a href="api_documentation.html">API</a> · <a href="html/index.html">Source Documentation</a> · <a href="developers.html">Developers</a>
</center>
</body>
</html>