patch-2.1.26 linux/net/lapb/lapb_iface.c
Next file: linux/net/lapb/lapb_in.c
Previous file: linux/net/ipx/af_ipx.c
Back to the patch index
Back to the overall index
- Lines: 46
- Date:
Tue Feb 4 16:44:25 1997
- Orig file:
v2.1.25/linux/net/lapb/lapb_iface.c
- Orig date:
Thu Feb 6 12:42:15 1997
diff -u --recursive --new-file v2.1.25/linux/net/lapb/lapb_iface.c linux/net/lapb/lapb_iface.c
@@ -14,6 +14,9 @@
*
* History
* LAPB 001 Jonathan Naylor Started Coding
+ *
+ * TODO
+ * Add FRMRs.
*/
#include <linux/config.h>
@@ -104,7 +107,7 @@
* Convert the integer token used by the device driver into a pointer
* to a LAPB control structure.
*/
-lapb_cb *lapb_tokentostruct(void *token)
+static lapb_cb *lapb_tokentostruct(void *token)
{
lapb_cb *lapb;
@@ -129,6 +132,7 @@
memset(lapb, 0x00, sizeof(*lapb));
+ skb_queue_head_init(&lapb->input_queue);
skb_queue_head_init(&lapb->write_queue);
skb_queue_head_init(&lapb->ack_queue);
@@ -323,6 +327,18 @@
skb_queue_tail(&lapb->write_queue, skb);
lapb_kick(lapb);
+
+ return LAPB_OK;
+}
+
+int lapb_data_received(void *token, struct sk_buff *skb)
+{
+ lapb_cb *lapb;
+
+ if ((lapb = lapb_tokentostruct(token)) == NULL)
+ return LAPB_BADTOKEN;
+
+ skb_queue_tail(&lapb->input_queue, skb);
return LAPB_OK;
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov