blob: bf8ab602bdb41279324dc8cb0da831e864f9354c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* $OpenBSD: tp_states.h,v 1.2 1996/03/04 10:36:26 mickey Exp $ */
/* $NetBSD: tp_states.h,v 1.4 1994/06/29 06:40:31 cgd Exp $ */
#define ST_ERROR 0x0
#define TP_CLOSED 0x1
#define TP_CRSENT 0x2
#define TP_AKWAIT 0x3
#define TP_OPEN 0x4
#define TP_CLOSING 0x5
#define TP_REFWAIT 0x6
#define TP_LISTENING 0x7
#define TP_CONFIRMING 0x8
#define tp_NSTATES 0x9
|