about summary refs log tree commit diff stats
path: root/html/092socket.mu.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/092socket.mu.html')
-rw-r--r--html/092socket.mu.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/html/092socket.mu.html b/html/092socket.mu.html
index 4bca64ec..f22f5e64 100644
--- a/html/092socket.mu.html
+++ b/html/092socket.mu.html
@@ -146,7 +146,7 @@ if ('onhashchange' in window) {
 <span id="L84" class="LineNr"> 84 </span>  host:text, path:text <span class="Special">&lt;-</span> <a href='092socket.mu.html#L148'>split-at</a> uri, <span class="Constant">47/slash</span>
 <span id="L85" class="LineNr"> 85 </span>  socket:num <span class="Special">&lt;-</span> $open-client-socket host, port
 <span id="L86" class="LineNr"> 86 </span>  assert socket, <span class="Constant">[contents]</span>
-<span id="L87" class="LineNr"> 87 </span>  req:text <span class="Special">&lt;-</span> <a href='061text.mu.html#L530'>interpolate</a> <span class="Constant">[GET _ HTTP/1.1]</span>, path
+<span id="L87" class="LineNr"> 87 </span>  req:text <span class="Special">&lt;-</span> <a href='061text.mu.html#L521'>interpolate</a> <span class="Constant">[GET _ HTTP/1.1]</span>, path
 <span id="L88" class="LineNr"> 88 </span>  <a href='092socket.mu.html#L93'>request-socket</a> socket, req
 <span id="L89" class="LineNr"> 89 </span>  contents:&amp;:<a href='075channel.mu.html#L43'>source</a>:char, <a href='075channel.mu.html#L47'>sink</a>:&amp;:<a href='075channel.mu.html#L47'>sink</a>:char <span class="Special">&lt;-</span> <a href='075channel.mu.html#L51'>new-channel</a><span class="Constant"> 10000</span>
 <span id="L90" class="LineNr"> 90 </span>  start-running <a href='092socket.mu.html#L125'>receive-from-client-socket-and-close</a> socket, <a href='075channel.mu.html#L47'>sink</a>
@@ -220,8 +220,8 @@ if ('onhashchange' in window) {
 <span id="L158" class="LineNr">158 </span>  <span class="Conceal">¦</span> <span class="muControl">return</span>
 <span id="L159" class="LineNr">159 </span>  <span class="Delimiter">}</span>
 <span id="L160" class="LineNr">160 </span>  idx:num <span class="Special">&lt;-</span> find-next text, delim,<span class="Constant"> 0</span>
-<span id="L161" class="LineNr">161 </span>  x:text <span class="Special">&lt;-</span> <a href='061text.mu.html#L1303'>copy-range</a> text,<span class="Constant"> 0</span>, idx
-<span id="L162" class="LineNr">162 </span>  y:text <span class="Special">&lt;-</span> <a href='061text.mu.html#L1303'>copy-range</a> text, idx, len
+<span id="L161" class="LineNr">161 </span>  x:text <span class="Special">&lt;-</span> <a href='061text.mu.html#L1294'>copy-range</a> text,<span class="Constant"> 0</span>, idx
+<span id="L162" class="LineNr">162 </span>  y:text <span class="Special">&lt;-</span> <a href='061text.mu.html#L1294'>copy-range</a> text, idx, len
 <span id="L163" class="LineNr">163 </span>]
 <span id="L164" class="LineNr">164 </span>
 <span id="L165" class="LineNr">165 </span><span class="muScenario">scenario</span> text-split-at [
ntact' href='/danisanti/profani-tty/commit/src/muc.h?id=4f7feedb655bc575c6041ef8b19a48342ce346b1'>4f7feedb ^
fac2b2cf ^





4f7feedb ^

60e0d5ef ^
4f7feedb ^





17757c86 ^
0338d136 ^
d25d6b45 ^








24a45e52 ^

d25d6b45 ^









60e0d5ef ^

d25d6b45 ^




78a1556f ^



4f7feedb ^


7ec0dd0b ^

5879f497 ^
c90f4a37 ^
d25d6b45 ^
d6a4af99 ^
d25d6b45 ^

71c2be59 ^
d25d6b45 ^




4c6cfcdc ^
d25d6b45 ^
71c2be59 ^
17757c86 ^
f247f367 ^
d25d6b45 ^



f247f367 ^
4c6cfcdc ^
d25d6b45 ^
4b14c0c4 ^
b50b786d ^


41b49cb5 ^

d25d6b45 ^

41b49cb5 ^
fac2b2cf ^

ba11e88d ^
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148