patch-2.1.27 linux/net/netbeui/netbeui_llc.c
Next file: linux/net/netrom/af_netrom.c
Previous file: linux/net/netbeui/netbeui.c
Back to the patch index
Back to the overall index
- Lines: 64
- Date:
Tue Feb 25 17:12:51 1997
- Orig file:
v2.1.26/linux/net/netbeui/netbeui_llc.c
- Orig date:
Thu Jan 2 05:13:29 1997
diff -u --recursive --new-file v2.1.26/linux/net/netbeui/netbeui_llc.c linux/net/netbeui/netbeui_llc.c
@@ -70,6 +70,11 @@
* See what has occured
*/
+
+ /*
+ * Connect completion confirmation
+ */
+
if(llc->llc_callbacks&LLC_CONN_CONFIRM)
{
/*
@@ -93,7 +98,13 @@
*/
if(llc->llc_callbacks&LLC_DATA_INDIC)
+ {
netbeu_rcv_stream(llc,llc->inc_skb);
+ /*
+ * Frame free is controlled by our stream processor
+ */
+ return;
+ }
/*
* We got disconnected
@@ -113,6 +124,10 @@
}
}
+ /*
+ * Miscellaneous burps
+ */
+
if(llc->llc_callbacks&(LLC_RESET_INDIC_LOC|LLC_RESET_INDIC_REM|
LLC_RST_CONFIRM))
{
@@ -124,6 +139,10 @@
*/
}
+ /*
+ * Track link busy status
+ */
+
if(llc->llc_callbacks&LLC_REMOTE_BUSY)
nb->busy=1; /* Send no more for a bit */
if(llc->llc_callbacks&LLC_REMOTE_NOTBUSY)
@@ -136,10 +155,15 @@
* UI frames are passed to the upper netbeui layer.
*/
if(llc->llc_callbacks&LLC_UI_DATA)
+ {
netbeui_rcv_dgram(llc,llc->inc_skb);
+ return;
+ }
/* We ignore TST, XID, FRMR stuff */
/* FIXME: We need to free frames here once I fix the callback! */
+ if(llc->inc_skb)
+ kfree_skb(skb, FREE_READ);
}
/*
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov