about summary refs log tree commit diff stats
path: root/html/http-server.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-12-26 20:44:10 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-12-26 20:58:37 -0800
commit201458e3bd2f1d79a0ea0b853552e9df267e92b1 (patch)
tree0a4f13662cde7f92ae0bcf641c9733e2a0fcd6ef /html/http-server.mu.html
parente35c2d6857e1ed916221faae707e3c53ff8ed042 (diff)
downloadmu-201458e3bd2f1d79a0ea0b853552e9df267e92b1.tar.gz
3713 - cross-link calls with definitions in html
Diffstat (limited to 'html/http-server.mu.html')
-rw-r--r--html/http-server.mu.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/html/http-server.mu.html b/html/http-server.mu.html
index 27b56980..5b4dab4a 100644
--- a/html/http-server.mu.html
+++ b/html/http-server.mu.html
@@ -68,11 +68,11 @@ if ('onhashchange' in window) {
 <span id="L13" class="LineNr">13 </span>  $print <span class="Constant">[Mu socket creation returned ]</span>, socket, <span class="Constant">10/newline</span>
 <span id="L14" class="LineNr">14 </span>  <span class="muControl">return-unless</span> socket
 <span id="L15" class="LineNr">15 </span>  session:num <span class="Special">&lt;-</span> $accept socket
-<span id="L16" class="LineNr">16 </span>  contents:&amp;:source:char, sink:&amp;:sink:char <span class="Special">&lt;-</span> new-channel<span class="Constant"> 30</span>
-<span id="L17" class="LineNr">17 </span>  sink <span class="Special">&lt;-</span> start-running receive-from-socket session, sink
-<span id="L18" class="LineNr">18 </span>  query:text <span class="Special">&lt;-</span> drain contents
+<span id="L16" class="LineNr">16 </span>  contents:&amp;:source:char, sink:&amp;:sink:char <span class="Special">&lt;-</span> <a href='075channel.mu.html#L51'>new-channel</a><span class="Constant"> 30</span>
+<span id="L17" class="LineNr">17 </span>  sink <span class="Special">&lt;-</span> start-running <a href='092socket.mu.html#L104'>receive-from-socket</a> session, sink
+<span id="L18" class="LineNr">18 </span>  query:text <span class="Special">&lt;-</span> <a href='075channel.mu.html#L487'>drain</a> contents
 <span id="L19" class="LineNr">19 </span>  $print <span class="Constant">[Done reading from socket.]</span>, <span class="Constant">10/newline</span>
-<span id="L20" class="LineNr">20 </span>  write-to-socket session, <span class="Constant">[HTTP/1.0 200 OK</span>
+<span id="L20" class="LineNr">20 </span>  <a href='092socket.mu.html#L132'>write-to-socket</a> session, <span class="Constant">[HTTP/1.0 200 OK</span>
 <span id="L21" class="LineNr">21 </span><span class="Constant">Content-type: text/plain</span>
 <span id="L22" class="LineNr">22 </span>
 <span id="L23" class="LineNr">23 </span><span class="Constant">SUCCESS!</span>