xref: /original-bsd/sys/netiso/tp_astring.c (revision 3705696b)
1 /*-
2  * Copyright (c) 1991, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)tp_astring.c	8.1 (Berkeley) 06/10/93
8  */
9 
10 char *tp_sstring[] = {
11 "ST_ERROR(0x0)",
12 "TP_CLOSED(0x1)",
13 "TP_CRSENT(0x2)",
14 "TP_AKWAIT(0x3)",
15 "TP_OPEN(0x4)",
16 "TP_CLOSING(0x5)",
17 "TP_REFWAIT(0x6)",
18 "TP_LISTENING(0x7)",
19 "TP_CONFIRMING(0x8)",
20 };
21 
22 char *tp_estring[] = {
23 "TM_inact(0x0)",
24 "TM_retrans(0x1)",
25 "TM_sendack(0x2)",
26 "TM_notused(0x3)",
27 "TM_reference(0x4)",
28 "TM_data_retrans(0x5)",
29 "ER_TPDU(0x6)",
30 "CR_TPDU(0x7)",
31 "DR_TPDU(0x8)",
32 "DC_TPDU(0x9)",
33 "CC_TPDU(0xa)",
34 "AK_TPDU(0xb)",
35 "DT_TPDU(0xc)",
36 "XPD_TPDU(0xd)",
37 "XAK_TPDU(0xe)",
38 "T_CONN_req(0xf)",
39 "T_DISC_req(0x10)",
40 "T_LISTEN_req(0x11)",
41 "T_DATA_req(0x12)",
42 "T_XPD_req(0x13)",
43 "T_USR_rcvd(0x14)",
44 "T_USR_Xrcvd(0x15)",
45 "T_DETACH(0x16)",
46 "T_NETRESET(0x17)",
47 "T_ACPT_req(0x18)",
48 };
49