about summary refs log tree commit diff stats
path: root/092socket.mu
diff options
context:
space:
mode:
Diffstat (limited to '092socket.mu')
-rw-r--r--092socket.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/092socket.mu b/092socket.mu
index ab16779c..22d8a342 100644
--- a/092socket.mu
+++ b/092socket.mu
@@ -63,7 +63,7 @@ def start-writing-socket network:&:local-network, port:num -> sink:&:sink:char,
   source:&:source:char, sink:&:sink:char <- new-channel 30
   {
     break-if network
-    socket:num <- $socket port
+    socket:num <- $open-server-socket port
     session:num <- $accept socket
     # TODO Create channel implementation of write-to-socket.
     return sink, 0/routine-id
>897ae8c1 ^
77d5b5d6 ^
4a48bedc ^
897ae8c1 ^
b7830945 ^
b96af395 ^
d1c12218 ^
1ead3562 ^
77d5b5d6 ^
b96af395 ^
e5e3640c ^
b96af395 ^
e5e3640c ^
b96af395 ^
ce87c19e ^
192d59d3 ^

b96af395 ^
1ead3562 ^
50685c29 ^
b96af395 ^
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