From (spam-protected) Thu Mar 9 16:05:30 2006 From: (spam-protected) (Thomas Lopatic) Date: Thu, 09 Mar 2006 15:05:30 +0000 Subject: [Olsr-cvs] olsrd-current/src/cfgparser olsrd_conf.c,1.47,1.48 Message-ID: Update of /cvsroot/olsrd/olsrd-current/src/cfgparser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7886/src/cfgparser Modified Files: olsrd_conf.c Log Message: Make conversion of default IPv6 addresses fail silently. On IPv6-capable systems this never fails. This only fails on systems that do not support AF_INET6 and made olsrd unusable with ulibc. Index: olsrd_conf.c =================================================================== RCS file: /cvsroot/olsrd/olsrd-current/src/cfgparser/olsrd_conf.c,v retrieving revision 1.47 retrieving revision 1.48 diff -C2 -d -r1.47 -r1.48 *** olsrd_conf.c 7 Jan 2006 08:16:24 -0000 1.47 --- olsrd_conf.c 9 Mar 2006 15:05:27 -0000 1.48 *************** *** 481,496 **** io->ipv6_addrtype = 1; /* XXX - FixMe */ ! if(inet_pton(AF_INET6, OLSR_IPV6_MCAST_SITE_LOCAL, &in6) < 0) ! { ! fprintf(stderr, "Failed converting IP address %s\n", OLSR_IPV6_MCAST_SITE_LOCAL); ! return NULL; ! } memcpy(&io->ipv6_multi_site.v6, &in6, sizeof(struct in6_addr)); ! if(inet_pton(AF_INET6, OLSR_IPV6_MCAST_GLOBAL, &in6) < 0) ! { ! fprintf(stderr, "Failed converting IP address %s\n", OLSR_IPV6_MCAST_GLOBAL); ! return NULL; ! } memcpy(&io->ipv6_multi_glbl.v6, &in6, sizeof(struct in6_addr)); --- 481,488 ---- io->ipv6_addrtype = 1; /* XXX - FixMe */ ! inet_pton(AF_INET6, OLSR_IPV6_MCAST_SITE_LOCAL, &in6); memcpy(&io->ipv6_multi_site.v6, &in6, sizeof(struct in6_addr)); ! inet_pton(AF_INET6, OLSR_IPV6_MCAST_GLOBAL, &in6); memcpy(&io->ipv6_multi_glbl.v6, &in6, sizeof(struct in6_addr)); From (spam-protected) Thu Mar 30 02:22:06 2006 From: (spam-protected) (Thomas Lopatic) Date: Thu, 30 Mar 2006 00:22:06 +0000 Subject: [Olsr-cvs] olsrd-current README-Link-Quality.html,1.3,1.4 Message-ID: Update of /cvsroot/olsrd/olsrd-current In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31203 Modified Files: README-Link-Quality.html Log Message: Added links supplied by Doug. Index: README-Link-Quality.html =================================================================== RCS file: /cvsroot/olsrd/olsrd-current/README-Link-Quality.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** README-Link-Quality.html 15 Feb 2005 18:22:19 -0000 1.3 --- README-Link-Quality.html 30 Mar 2006 00:22:02 -0000 1.4 *************** *** 163,168 **** The value 1 / (NLQ x LQ) is called the Expected Transmission Count or ETX. For those interested in a more ! in-depth discussion, there's a scientific paper on it, just ! goggle for "expected transmission count".

--- 163,172 ---- The value 1 / (NLQ x LQ) is called the Expected Transmission Count or ETX. For those interested in a more ! in-depth discussion, there's a ! ! scientific paper by the people who invented all this, and ! for those who would like to know still more, there's ! ! Doug's PhD thesis.