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