about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--092socket.mu13
1 files changed, 8 insertions, 5 deletions
diff --git a/092socket.mu b/092socket.mu
index 1e4f8c3c..ab16779c 100644
--- a/092socket.mu
+++ b/092socket.mu
@@ -1,14 +1,17 @@
-# Wrappers around socket primitives that take a 'network-interface' object and
-# are thus easier to test.
-# The current semantics of fake port-connections don't match UNIX socket ones, but we'll improve them as we learn more.
+# Wrappers around socket primitives that take a 'local-network' object and are
+# thus easier to test.
+#
+# The current semantics of fake port-connections don't match UNIX socket ones,
+# but we'll improve them as we learn more.
+
 container local-network [
   data:&:@:port-connection
 ]
 
 # Port connections represent connections to ports on localhost.
 # Before passing a local-network object to network functions
-# `start-reading` and `start-writing`, add port-connections to the
-# local-network.
+# `start-reading-socket` and `start-writing-socket`, add port-connections to
+# the local-network.
 #
 # For reading, `transmit-from-socket` will check for a
 # port-connection on the port parameter that's been passed in. If there's
>fc5bfb7d ^
6b852a2f ^
0fbaa6f5 ^
6b852a2f ^
fc5bfb7d ^
5d9c7ffd ^

a21ab6d4 ^


581f58e4 ^
aa2a87d1 ^
a6859354 ^
581f58e4 ^
7c908780 ^

e6987387 ^
1248f49c ^
7c908780 ^
581f58e4 ^



c001f0e7 ^
e818a677 ^
90e7ce1c ^
74e8a405 ^
4e169689 ^
6a9bb8ea ^
a6859354 ^

7fe8f61b ^
b83b262d ^
8685e78c ^

a21ab6d4 ^


581f58e4 ^

279737ba ^

6bad38c2 ^

7c908780 ^


ac7ec7f2 ^
e6987387 ^
7c908780 ^

6bad38c2 ^
7c908780 ^

72d96a92 ^
7c908780 ^

7c908780 ^

c9ed5834 ^
72d96a92 ^
7c908780 ^
72d96a92 ^
453fcae2 ^

7c908780 ^
6b852a2f ^










26726b20 ^
7c908780 ^




72d96a92 ^

581f58e4 ^
ac7ec7f2 ^
5d9c7ffd ^


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