|
From: Mathieu P. <m.p...@wa...> - 2010-10-13 10:23:06
|
Hello all,
There is a problem on the border router when this one is not connected
immediately to tunslip6: it sends every second a frame on the medium.
To fix this, it is necessary to add in the /border-router.c/ the
following code source:
void
request_prefix(void) {
/* mess up uip_buf with a dirty request... */
uip_buf[0] = '!';
uip_buf[1] = 'P';
uip_len = 2;
slip_send();
uip_len = 0; // fix bug about sending frame on the medium every second
}
regards,
Mathieu
|