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
|
# Copyright (c) 1987,1988 Massachusetts Institute of Technology
#
# For copying and distribution information, see the file
# "mit-copyright.h".
#
# $Id$
et zsrv
ec ZSRV_BADASSOC,
"Client not associated with class"
ec ZSRV_NOCLT,
"No such client"
ec ZSRV_NOSUB,
"No such subscription"
ec ZSRV_NOCLASS,
"Class unknown"
ec ZSRV_CLASSXISTS,
"Class already registered"
ec ZSRV_CLASSRESTRICTED,
"Class already restricted"
ec ZSRV_HNOTFOUND,
"Host manager unknown"
ec ZSRV_WRONGSRV,
"Host not on this server"
ec ZSRV_PKSHORT,
"Pkt length too short"
ec ZSRV_BUFSHORT,
"Buffer too short"
ec ZSRV_LEN,
"Read/Write length wrong"
ec ZSRV_UNKNOWNOPCODE,
"Unknown opcode"
ec ZSRV_REQUEUE,
"Requeue for later processing"
ec ZSRV_RCSID,
"$Id$"
ec ZSRV_BADSUBPORT,
"Illegal port specified in subscription"
ec ZSRV_NORLM,
"No such realm"
ec ZSRV_EMPTYCLASS,
"Class is now empty"
end
|