xref: /csrg-svn/sys/netiso/tp_astring.c (revision 63222)
149268Sbostic /*-
2*63222Sbostic  * Copyright (c) 1991, 1993
3*63222Sbostic  *	The Regents of the University of California.  All rights reserved.
449268Sbostic  *
549268Sbostic  * %sccs.include.redist.c%
649268Sbostic  *
7*63222Sbostic  *	@(#)tp_astring.c	8.1 (Berkeley) 06/10/93
849268Sbostic  */
949268Sbostic 
1036397Ssklower char *tp_sstring[] = {
1136397Ssklower "ST_ERROR(0x0)",
1236397Ssklower "TP_CLOSED(0x1)",
1336397Ssklower "TP_CRSENT(0x2)",
1436397Ssklower "TP_AKWAIT(0x3)",
1536397Ssklower "TP_OPEN(0x4)",
1636397Ssklower "TP_CLOSING(0x5)",
1736397Ssklower "TP_REFWAIT(0x6)",
1836397Ssklower "TP_LISTENING(0x7)",
1938841Ssklower "TP_CONFIRMING(0x8)",
2036397Ssklower };
2136397Ssklower 
2236397Ssklower char *tp_estring[] = {
2336397Ssklower "TM_inact(0x0)",
2436397Ssklower "TM_retrans(0x1)",
2536397Ssklower "TM_sendack(0x2)",
2636397Ssklower "TM_notused(0x3)",
2736397Ssklower "TM_reference(0x4)",
2836397Ssklower "TM_data_retrans(0x5)",
2936397Ssklower "ER_TPDU(0x6)",
3036397Ssklower "CR_TPDU(0x7)",
3136397Ssklower "DR_TPDU(0x8)",
3236397Ssklower "DC_TPDU(0x9)",
3336397Ssklower "CC_TPDU(0xa)",
3436397Ssklower "AK_TPDU(0xb)",
3536397Ssklower "DT_TPDU(0xc)",
3636397Ssklower "XPD_TPDU(0xd)",
3736397Ssklower "XAK_TPDU(0xe)",
3836397Ssklower "T_CONN_req(0xf)",
3936397Ssklower "T_DISC_req(0x10)",
4036397Ssklower "T_LISTEN_req(0x11)",
4136397Ssklower "T_DATA_req(0x12)",
4236397Ssklower "T_XPD_req(0x13)",
4336397Ssklower "T_USR_rcvd(0x14)",
4436397Ssklower "T_USR_Xrcvd(0x15)",
4536397Ssklower "T_DETACH(0x16)",
4636397Ssklower "T_NETRESET(0x17)",
4738841Ssklower "T_ACPT_req(0x18)",
4836397Ssklower };
49