linux/include/net/llc_s_ev.h

#ifndef LLC_S_EV_H
#define LLC_S_EV_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 <linux/skbuff.h>
#include <net/llc.h>

/* Defines SAP component events */
/* Types of events (possible values in 'ev->type') */
#define LLC_SAP_EV_TYPE_SIMPLE
#define LLC_SAP_EV_TYPE_CONDITION
#define LLC_SAP_EV_TYPE_PRIM
#define LLC_SAP_EV_TYPE_PDU
#define LLC_SAP_EV_TYPE_ACK_TMR
#define LLC_SAP_EV_TYPE_RPT_STATUS

#define LLC_SAP_EV_ACTIVATION_REQ
#define LLC_SAP_EV_RX_UI
#define LLC_SAP_EV_UNITDATA_REQ
#define LLC_SAP_EV_XID_REQ
#define LLC_SAP_EV_RX_XID_C
#define LLC_SAP_EV_RX_XID_R
#define LLC_SAP_EV_TEST_REQ
#define LLC_SAP_EV_RX_TEST_C
#define LLC_SAP_EV_RX_TEST_R
#define LLC_SAP_EV_DEACTIVATION_REQ

struct llc_sap_state_ev {};

static __inline__ struct llc_sap_state_ev *llc_sap_ev(struct sk_buff *skb)
{}

struct llc_sap;

llc_sap_ev_t;

int llc_sap_ev_activation_req(struct llc_sap *sap, struct sk_buff *skb);
int llc_sap_ev_rx_ui(struct llc_sap *sap, struct sk_buff *skb);
int llc_sap_ev_unitdata_req(struct llc_sap *sap, struct sk_buff *skb);
int llc_sap_ev_xid_req(struct llc_sap *sap, struct sk_buff *skb);
int llc_sap_ev_rx_xid_c(struct llc_sap *sap, struct sk_buff *skb);
int llc_sap_ev_rx_xid_r(struct llc_sap *sap, struct sk_buff *skb);
int llc_sap_ev_test_req(struct llc_sap *sap, struct sk_buff *skb);
int llc_sap_ev_rx_test_c(struct llc_sap *sap, struct sk_buff *skb);
int llc_sap_ev_rx_test_r(struct llc_sap *sap, struct sk_buff *skb);
int llc_sap_ev_deactivation_req(struct llc_sap *sap, struct sk_buff *skb);
#endif /* LLC_S_EV_H */