annotate lib/net.a @ 2593:4c3c19ec3257

Added second vhd drive for MESS version 144 and newer. Will not alter performance with older versions of MESS.
author robertgault
date Sat, 24 Dec 2011 13:01:17 +0000
parents 7d70b7e1cb21
children 06d492093592
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2474
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
1 ********************************************************************
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
2 * net - network routines
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
3 *
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
4 * $Id$
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
5 *
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
6 * Edt/Rev YYYY/MM/DD Modified by
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
7 * Comment
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
8 * ------------------------------------------------------------------
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
9 * 1 2010/01/08 Boisy G. Pitre
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
10 * Started.
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
11
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
12 nam net.a
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
13 ttl network routines
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
14
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
15 psect net_a,0,0,0,0,0
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
16
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
17 vsect
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
18 nbufferl equ 128
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
19 nbuffer rmb nbufferl
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
20 endsect
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
21
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
22 space fcb C$SPAC
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
23
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
24 devnam fcs "/N"
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
25
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
26
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
27 getopts leax nbuffer,u
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
28 ldb #SS.Opt
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
29 os9 I$GetStt
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
30 rts
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
31
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
32 setopts leax nbuffer,u
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
33 ldb #SS.Opt
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
34 os9 I$SetStt
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
35 rts
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
36
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
37 * Set Echo
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
38 *
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
39 * Entry: A = path to network device
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
40 * Exit:
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
41 * Success: CC carry clear
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
42 * Failure: CC carry set, B = error code
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
43 SetEcho: pshs a,x
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
44 bsr getopts
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
45 bcs rawex
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
46 ldb #1
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
47 stb PD.EKO-PD.OPT,x
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
48 bsr setopts
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
49 puls a,x,pc
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
50
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
51
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
52 * Set Auto Linefeed
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
53 *
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
54 * Entry: A = path to network device
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
55 * Exit:
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
56 * Success: CC carry clear
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
57 * Failure: CC carry set, B = error code
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
58 SetAutoLF: pshs a,x
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
59 bsr getopts
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
60 bcs rawex
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
61 ldb #1
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
62 stb PD.ALF-PD.OPT,x
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
63 bsr setopts
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
64 puls a,x,pc
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
65
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
66
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
67 * Put the path passed in A in raw mode
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
68 *
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
69 * Entry: A = path to network device
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
70 *
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
71 * Exit:
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
72 * Success: CC carry clear
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
73 * Failure: CC carry set, B = error code
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
74 RawPath: pshs a,x
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
75 bsr getopts
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
76 bcs rawex
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
77 leax PD.UPC-PD.OPT,x
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
78 ldb #PD.QUT-PD.UPC
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
79 rawloop clr ,x+
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
80 decb
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
81 bpl rawloop
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
82 bsr setopts
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
83 rawex puls a,x,pc
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
84
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
85
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
86 * Attempts to open and setup a path to the TCP server
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
87 *
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
88 * Exit:
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
89 * Success: A = path to network device, CC carry clear
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
90 * Failure: B = error code, CC carry set
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
91 TCPOpen: pshs x,y
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
92 lda #UPDAT.
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
93 leax devnam,pcr
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
94 os9 I$Open
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
95 puls x,y,pc
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
96
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
97
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
98 * Informs the server that we are killing a session
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
99 *
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
100 * Entry: A = path to network device
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
101 * Y = pointer to token string (nul terminated)
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
102 *
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
103 * Exit:
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
104 * Success: CC carry clear
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
105 * Failure: CC carry set, B = error code
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
106 TCPKill: pshs a,x,y
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
107 leax tcpkill,pcr
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
108 ldy #tcpkilll
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
109 os9 I$Write
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
110 lbcs connectex
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
111 bra writeport
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
112
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
113 * Informs the server that we are joining a session
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
114 *
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
115 * Entry: A = path to network device
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
116 * Y = pointer to token string (nul terminated)
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
117 *
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
118 * Exit:
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
119 * Success: CC carry clear
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
120 * Failure: CC carry set, B = error code
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
121 TCPJoin: pshs a,x,y
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
122 leax tcpjoin,pcr
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
123 ldy #tcpjoinl
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
124 os9 I$Write
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
125 lbcs connectex
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
126 bra writeport
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
127
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
128 * Attempts to connect to a TCP/IP host via the server
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
129 *
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
130 * Entry: A = path to network device
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
131 * X = pointer to host name string (nul terminated)
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
132 * Y = pointer to port string (nul terminated)
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
133 *
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
134 * Exit:
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
135 * Success: CC carry clear
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
136 * Failure: CC carry set, B = error code
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
137 TCPConnectToHost:
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
138 pshs a,x,y
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
139 leax tcpconnect,pcr
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
140 ldy #tcpconnectl
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
141 os9 I$Write
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
142 bcs connectex
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
143 ldx 1,s
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
144 lbsr STRLEN
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
145 tfr d,y
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
146 lda ,s
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
147 os9 I$Write
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
148 * write space
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
149 leax space,pcr
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
150 ldy #1
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
151 os9 I$Write
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
152 * write port (we worry about response later)
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
153 writeport ldx 3,s get original Y on stack
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
154 pshs a
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
155 lbsr STRLEN
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
156 tfr d,y
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
157 puls a
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
158 os9 I$Write
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
159 leax acr,pcr
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
160 ldy #1
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
161 os9 I$WritLn
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
162
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
163 * read response from server
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
164 * Entry: A = path
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
165 readresponse
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
166 leax nbuffer,u
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
167 ldy #nbufferl
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
168 os9 I$ReadLn
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
169 bcs connectex
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
170 lda ,x
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
171 cmpa #'F
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
172 bne connectex
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
173 * failure case: read number and return it with carry set
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
174 leax 5,x skip over "FAIL "
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
175 lbsr DEC_BIN error will fit in B
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
176 coma set carry
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
177 connectex puls a,x,y,pc
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
178
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
179 acr fcb C$CR
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
180
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
181 * Requests to listen on a port
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
182 *
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
183 * Entry: A = path to network device
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
184 * X = pointer to parameter string (nul terminated)
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
185 *
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
186 * Exit:
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
187 * Success: CC carry clear
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
188 * Failure: CC carry set, B = error code
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
189 TCPListen: pshs a,x,y
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
190 leax tcplisten,pcr
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
191 ldy #tcplistenl
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
192 os9 I$Write
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
193 bcs connectex
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
194 ldx 1,s
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
195 lbsr STRLEN
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
196 tfr d,y
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
197 lda ,s
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
198 os9 I$Write
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
199 leax acr,pcr
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
200 ldy #1
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
201 os9 I$WritLn
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
202 bra readresponse
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
203
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
204 * Disconnects the TCP/IP host via the server
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
205 *
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
206 * Entry: A = path to network device
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
207 *
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
208 * Exit:
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
209 * Success: CC carry clear
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
210 * Failure: B = error code, CC carry set
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
211 TCPDisconnect: os9 I$Close
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
212 rts
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
213
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
214 tcpconnect fcc 'tcp connect '
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
215 tcpconnectl equ *-tcpconnect
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
216
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
217 tcplisten fcc 'tcp listen '
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
218 tcplistenl equ *-tcplisten
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
219
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
220 tcpjoin fcc 'tcp join '
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
221 tcpjoinl equ *-tcpjoin
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
222
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
223 tcpkill fcc 'tcp kill '
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
224 tcpkilll equ *-tcpkill
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
225
7d70b7e1cb21 Moved net and alib files into here
boisy
parents:
diff changeset
226 endsect