Here is a patch to /usr/src/linux/net/ax25/ax25_timer.c (in linux 2.0.36)
Just to test, people having problems with ax25 in connected mode, tell me if
it solves something:
---------------------Cut here--------------------------
--- ax25_timer.c Fri May 7 13:37:20 1999
+++ ax25_timer.c Fri May 7 13:41:06 1999
@@ -97,12 +97,13 @@
break;
}
}
/*
* Check for frames to transmit.
+ Only in connected state (ea4acl).
*/
- if (!ax25->dama_slave)
+ if (!ax25->dama_slave && ax25->state==AX25_STATE_3)
ax25_kick(ax25);
break;
default:
break;
------------------------------ Cut here ---------------