1 #ifndef LLC_IF_H
2 #define LLC_IF_H
3
4
5
6
7
8
9
10
11
12
13
14
15
16 #include <linux/if.h>
17 #include <linux/if_arp.h>
18 #include <linux/llc.h>
19 #include <linux/etherdevice.h>
20 #include <net/llc.h>
21
22 #define LLC_DATAUNIT_PRIM 1
23 #define LLC_CONN_PRIM 2
24 #define LLC_DATA_PRIM 3
25 #define LLC_DISC_PRIM 4
26 #define LLC_RESET_PRIM 5
27 #define LLC_FLOWCONTROL_PRIM 6
28 #define LLC_DISABLE_PRIM 7
29 #define LLC_XID_PRIM 8
30 #define LLC_TEST_PRIM 9
31 #define LLC_SAP_ACTIVATION 10
32 #define LLC_SAP_DEACTIVATION 11
33
34 #define LLC_NBR_PRIMITIVES 11
35
36 #define LLC_IND 1
37 #define LLC_CONFIRM 2
38
39
40 #define LLC_PRIM_TYPE_REQ 1
41 #define LLC_PRIM_TYPE_IND 2
42 #define LLC_PRIM_TYPE_RESP 3
43 #define LLC_PRIM_TYPE_CONFIRM 4
44
45
46 #define LLC_RESET_REASON_REMOTE 1
47 #define LLC_RESET_REASON_LOCAL 2
48
49
50 #define LLC_DISC_REASON_RX_DM_RSP_PDU 0
51 #define LLC_DISC_REASON_RX_DISC_CMD_PDU 1
52 #define LLC_DISC_REASON_ACK_TMR_EXP 2
53
54
55 #define LLC_STATUS_CONN 0
56 #define LLC_STATUS_DISC 1
57 #define LLC_STATUS_FAILED 2
58 #define LLC_STATUS_IMPOSSIBLE 3
59 #define LLC_STATUS_RECEIVED 4
60 #define LLC_STATUS_REMOTE_BUSY 5
61 #define LLC_STATUS_REFUSE 6
62 #define LLC_STATUS_CONFLICT 7
63 #define LLC_STATUS_RESET_DONE 8
64
65 int llc_establish_connection(struct sock *sk, u8 *lmac, u8 *dmac, u8 dsap);
66 int llc_build_and_send_pkt(struct sock *sk, struct sk_buff *skb);
67 int llc_send_disc(struct sock *sk);
68 #endif