xref: /original-bsd/sys/netiso/tp_astring.c (revision 7e95f7c4)
1 /* $Header$ */
2 /* $Source$ */
3 #ifndef _NFILE
4 #include <stdio.h>
5 #endif _NFILE
6 char *tp_sstring[] = {
7 "ST_ERROR(0x0)",
8 "TP_CLOSED(0x1)",
9 "TP_CRSENT(0x2)",
10 "TP_AKWAIT(0x3)",
11 "TP_OPEN(0x4)",
12 "TP_CLOSING(0x5)",
13 "TP_REFWAIT(0x6)",
14 "TP_LISTENING(0x7)",
15 };
16 
17 char *tp_estring[] = {
18 "TM_inact(0x0)",
19 "TM_retrans(0x1)",
20 "TM_sendack(0x2)",
21 "TM_notused(0x3)",
22 "TM_reference(0x4)",
23 "TM_data_retrans(0x5)",
24 "ER_TPDU(0x6)",
25 "CR_TPDU(0x7)",
26 "DR_TPDU(0x8)",
27 "DC_TPDU(0x9)",
28 "CC_TPDU(0xa)",
29 "AK_TPDU(0xb)",
30 "DT_TPDU(0xc)",
31 "XPD_TPDU(0xd)",
32 "XAK_TPDU(0xe)",
33 "T_CONN_req(0xf)",
34 "T_DISC_req(0x10)",
35 "T_LISTEN_req(0x11)",
36 "T_DATA_req(0x12)",
37 "T_XPD_req(0x13)",
38 "T_USR_rcvd(0x14)",
39 "T_USR_Xrcvd(0x15)",
40 "T_DETACH(0x16)",
41 "T_NETRESET(0x17)",
42 };
43