core/net/uip: Rename uip_ethaddr to uip_lladdr.

There isn't really a good reason I can think of for these
to be different between IPv4 and IPv6.
This commit is contained in:
Robert Quattlebaum 2013-01-09 08:03:57 -08:00
parent 9c8f1d5356
commit 1d113f52ad
11 changed files with 33 additions and 34 deletions

View file

@ -187,7 +187,7 @@ tapdev_send(void)
printf("\n");
} else {
memcpy(&BUF->dest, addr, 6);
memcpy(&BUF->src, &uip_ethaddr, 6);
memcpy(&BUF->src, &uip_lladdr, 6);
uip_len += sizeof(struct uip_eth_hdr);
do_send();
}