• Home
  • Raw
  • Download

Lines Matching +full:int +full:- +full:property

1 .. SPDX-License-Identifier: GPL-2.0
11 Changed (Henner Eisen, 2000-10-29): int return value for data_indication()
25 ----------
37 -----------------------------
44 void (*connect_confirmation)(int token, int reason);
45 void (*connect_indication)(int token, int reason);
46 void (*disconnect_confirmation)(int token, int reason);
47 void (*disconnect_indication)(int token, int reason);
48 int (*data_indication)(int token, struct sk_buff *skb);
49 void (*data_transmit)(int token, struct sk_buff *skb);
59 ------------------------
66 unsigned int t1;
67 unsigned int t1timer;
68 unsigned int t2;
69 unsigned int t2timer;
70 unsigned int n2;
71 unsigned int n2count;
72 unsigned int window;
73 unsigned int state;
74 unsigned int mode;
93 3-31 Reserved, must be 0.
107 ---------
113 int lapb_register(void *token, struct lapb_register_struct);
132 int lapb_unregister(void *token);
146 int lapb_getparms(void *token, struct lapb_parms_struct *parms);
159 int lapb_setparms(void *token, struct lapb_parms_struct *parms);
175 int lapb_connect_request(void *token);
188 int lapb_disconnect_request(void *token);
200 int lapb_data_request(void *token, struct sk_buff *skb);
214 int lapb_data_received(void *token, struct sk_buff *skb);
217 is expected that the data passed to the LAPB module has skb->data pointing
228 ---------
237 void (*connect_confirmation)(void *token, int reason);
245 void (*connect_indication)(void *token, int reason);
252 void (*disconnect_confirmation)(void *token, int reason);
268 void (*disconnect_indication)(void *token, int reason);
286 int (*data_indication)(void *token, struct sk_buff *skb);
290 stack. The skbuff becomes the property of the device driver and the LAPB
291 module will not perform any more actions on it. The skb->data pointer will
303 remote system by the device driver. The skbuff becomes the property of the
305 The skb->data pointer will be pointing to the first byte of the LAPB header.