xref: /csrg-svn/sys/netiso/tp_astring.c (revision 49268)
1*49268Sbostic /*-
2*49268Sbostic  * Copyright (c) 1991 The Regents of the University of California.
3*49268Sbostic  * All rights reserved.
4*49268Sbostic  *
5*49268Sbostic  * %sccs.include.redist.c%
6*49268Sbostic  *
7*49268Sbostic  *	@(#)tp_astring.c	7.4 (Berkeley) 05/06/91
8*49268Sbostic  */
9*49268Sbostic 
1036397Ssklower #ifndef _NFILE
1136397Ssklower #include <stdio.h>
1236397Ssklower #endif _NFILE
1336397Ssklower char *tp_sstring[] = {
1436397Ssklower "ST_ERROR(0x0)",
1536397Ssklower "TP_CLOSED(0x1)",
1636397Ssklower "TP_CRSENT(0x2)",
1736397Ssklower "TP_AKWAIT(0x3)",
1836397Ssklower "TP_OPEN(0x4)",
1936397Ssklower "TP_CLOSING(0x5)",
2036397Ssklower "TP_REFWAIT(0x6)",
2136397Ssklower "TP_LISTENING(0x7)",
2238841Ssklower "TP_CONFIRMING(0x8)",
2336397Ssklower };
2436397Ssklower 
2536397Ssklower char *tp_estring[] = {
2636397Ssklower "TM_inact(0x0)",
2736397Ssklower "TM_retrans(0x1)",
2836397Ssklower "TM_sendack(0x2)",
2936397Ssklower "TM_notused(0x3)",
3036397Ssklower "TM_reference(0x4)",
3136397Ssklower "TM_data_retrans(0x5)",
3236397Ssklower "ER_TPDU(0x6)",
3336397Ssklower "CR_TPDU(0x7)",
3436397Ssklower "DR_TPDU(0x8)",
3536397Ssklower "DC_TPDU(0x9)",
3636397Ssklower "CC_TPDU(0xa)",
3736397Ssklower "AK_TPDU(0xb)",
3836397Ssklower "DT_TPDU(0xc)",
3936397Ssklower "XPD_TPDU(0xd)",
4036397Ssklower "XAK_TPDU(0xe)",
4136397Ssklower "T_CONN_req(0xf)",
4236397Ssklower "T_DISC_req(0x10)",
4336397Ssklower "T_LISTEN_req(0x11)",
4436397Ssklower "T_DATA_req(0x12)",
4536397Ssklower "T_XPD_req(0x13)",
4636397Ssklower "T_USR_rcvd(0x14)",
4736397Ssklower "T_USR_Xrcvd(0x15)",
4836397Ssklower "T_DETACH(0x16)",
4936397Ssklower "T_NETRESET(0x17)",
5038841Ssklower "T_ACPT_req(0x18)",
5136397Ssklower };
52