linux/include/net/llc_c_st.h

#ifndef LLC_C_ST_H
#define LLC_C_ST_H
/*
 * Copyright (c) 1997 by Procom Technology,Inc.
 *		2001 by Arnaldo Carvalho de Melo <[email protected]>
 *
 * This program can be redistributed or modified under the terms of the
 * GNU General Public License as published by the Free Software Foundation.
 * This program is distributed without any warranty or implied warranty
 * of merchantability or fitness for a particular purpose.
 *
 * See the GNU General Public License for more details.
 */

#include <net/llc_c_ac.h>
#include <net/llc_c_ev.h>

/* Connection component state management */
/* connection states */
#define LLC_CONN_OUT_OF_SVC
 
#define LLC_CONN_STATE_ADM
#define LLC_CONN_STATE_SETUP
#define LLC_CONN_STATE_NORMAL
#define LLC_CONN_STATE_BUSY
#define LLC_CONN_STATE_REJ
#define LLC_CONN_STATE_AWAIT
#define LLC_CONN_STATE_AWAIT_BUSY
#define LLC_CONN_STATE_AWAIT_REJ
#define LLC_CONN_STATE_D_CONN
#define LLC_CONN_STATE_RESET
#define LLC_CONN_STATE_ERROR
#define LLC_CONN_STATE_TEMP

#define NBR_CONN_STATES
#define NO_STATE_CHANGE

/* Connection state table structure */
struct llc_conn_state_trans {};

struct llc_conn_state {};

extern struct llc_conn_state llc_conn_state_table[];
#endif /* LLC_C_ST_H */