[Babel-users] Convergence problem
Juliusz Chroboczek
Juliusz.Chroboczek at pps.jussieu.fr
Thu Jul 3 14:27:42 UTC 2008
> I am testing Babel on ppp links, over USB/serial. And i have
> problem, if I unpluged cable for few seconds, so ppp link is still
> up, then I have problems, output logs from both sides are in files
> debug.*.
I've made a silly typo in 0.14, that will severely break reconvergence
in the case when the proactive features don't trigger (by up to 70
seconds). The patch is attached.
I'll release 0.15 by tonight, I've got some other minor tweaks to
make. Robert, thanks a lot for your help.
Juliusz
Thu Jul 3 16:25:12 CEST 2008 Juliusz Chroboczek <jch at pps.jussieu.fr>
* Fix typo in the computation of the update interval.
diff -rN -u old-babel/babel.c new-babel/babel.c
--- old-babel/babel.c 2008-07-03 16:25:33.000000000 +0200
+++ new-babel/babel.c 2008-07-03 16:25:33.000000000 +0200
@@ -269,7 +269,7 @@
update_interval =
MIN(MAX(wireless_hello_interval * 5, wired_hello_interval),
70000);
- update_interval = MAX(update_interval, 70);
+ update_interval = MIN(update_interval, 70);
if(seqno_interval <= 0)
/* This should be slightly less than the self_update_interval */
More information about the Babel-users
mailing list