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