about summary refs log tree commit diff stats
path: root/html/092socket.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-06-09 00:13:39 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-06-09 00:13:39 -0700
commitf53746f80145a184b5e4a6974175e2f92f49dcba (patch)
tree754e5463f01d12a94130724fb481d568b0792d65 /html/092socket.mu.html
parentbfa3f5ba3930fb3919d94e97929a2b962d104e10 (diff)
downloadmu-f53746f80145a184b5e4a6974175e2f92f49dcba.tar.gz
3901
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 [