repo.or.cz
/
brdnet.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
StoreObject finalization correction.
[brdnet.git]
/
opcode.pas
blob
673b1f45e070994447de349c5a9831daf0e16b98
1
UNIT
opcode
;
2
INTERFACE
3
4
const
{dgram opcode}
5
tcdata
=
4
;
6
tcdataimm
=
6
;
7
tccont
=
5
;
8
tceack
=
7
;
9
tcdata_no_report
=
8
unimplemented
;
10
const
{chat init}
11
upFileServer
=
2
;
12
const
{FS opcodes}
13
{c}
upOPEN
=
7
;
14
{s}
upINFO
=
8
;
15
{s}
upFAIL
=
9
;
16
{c}
upLSEG
=
10
;
17
{s}
upUNAVL
=
11
;
18
{c}
upSTOP
=
13
;
19
{c}
upCLOSE
=
14
;
20
{c}
upWEIGHT
=
15
;
21
{s}
upEPROTO
=
16
;
22
{s}
upDONE
=
17
;
23
{s}
upSEGOK
=
18
;
24
upErrMalformed
=
1
;
25
upErrHiChan
=
2
;
26
upErrChanInUse
=
3
;
27
upErrNotFound
=
4
;
28
upErrIO
=
5
;
29
upErrSegNoGet
=
6
;
30
upErrNotOpen
=
7
;
31
upErrTroll
=
99
;
32
33
IMPLEMENTATION
34
END
.