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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Mu - http-server.mu</title>
<meta name="Generator" content="Vim/7.4">
<meta name="plugin-version" content="vim7.4_v2">
<meta name="syntax" content="none">
<meta name="settings" content="use_css,pre_wrap,no_foldcolumn,expand_tabs,prevent_copy=">
<meta name="colorscheme" content="minimal">
<style type="text/css">
<!--
pre { white-space: pre-wrap; font-family: monospace; color: #eeeeee; background-color: #080808; }
body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color: #080808; }
* { font-size: 12pt; font-size: 1em; }
.muControl { color: #c0a020; }
.Comment { color: #9090ff; }
.Constant { color: #00a0a0; }
.Special { color: #c00000; }
.muRecipe { color: #ff8700; }
-->
</style>
<script type='text/javascript'>
<!--
-->
</script>
</head>
<body>
<pre id='vimCodeElement'>
<span class="Comment"># example program: a single-request HTTP server</span>
<span class="Comment"># listen for connections from clients on a server socket</span>
<span class="Comment"># when a connection occurs, transfer it to a session socket</span>
<span class="Comment"># read from it using channels</span>
<span class="Comment"># write to it directly</span>
<span class="Comment">#</span>
<span class="Comment"># After running it, navigate to localhost:8080. Your browser should display</span>
<span class="Comment"># "SUCCESS!" and the server will terminate after one connection.</span>
<span class="muRecipe">def</span> main [
<span class="Constant">local-scope</span>
socket:num <span class="Special"><-</span> $open-server-socket <span class="Constant">8080/port</span>
$print <span class="Constant">[Mu socket creation returned ]</span>, socket, <span class="Constant">10/newline</span>
<span class="muControl">return-unless</span> socket
session:num <span class="Special"><-</span> $accept socket
contents:&:source:char, sink:&:sink:char <span class="Special"><-</span> new-channel<span class="Constant"> 30</span>
sink <span class="Special"><-</span> start-running receive-from-socket session, sink
query:text <span class="Special"><-</span> drain contents
$print <span class="Constant">[Done reading from socket.]</span>, <span class="Constant">10/newline</span>
write-to-socket session, <span class="Constant">[HTTP/1.0 200 OK</span>
<span class="Constant">Content-type: text/plain</span>
<span class="Constant">SUCCESS!</span>
<span class="Constant">]</span>
$print <span class="Constant">10/newline</span>, <span class="Constant">[Wrote to and closing socket...]</span>, <span class="Constant">10/newline</span>
session <span class="Special"><-</span> $close-socket session
socket <span class="Special"><-</span> $close-socket socket
]
</pre>
</body>
</html>
<!-- vim: set foldmethod=manual : -->
|