There seems no reason for the whole set_ethaddr() thing if uip_setethaddr() doesn't get called after all.
This commit is contained in:
parent
72d5442e05
commit
f930dadf9f
|
@ -30,7 +30,7 @@
|
||||||
*
|
*
|
||||||
* Author: Oliver Schmidt <ol.sc@web.de>
|
* Author: Oliver Schmidt <ol.sc@web.de>
|
||||||
*
|
*
|
||||||
* $Id: wpcap.c,v 1.15 2009/08/08 19:51:25 dak664 Exp $
|
* $Id: wpcap.c,v 1.16 2009/08/09 20:44:42 oliverschmidt Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define WIN32_LEAN_AND_MEAN
|
#define WIN32_LEAN_AND_MEAN
|
||||||
|
@ -63,7 +63,7 @@ __attribute__((dllimport)) extern char **__argv[];
|
||||||
#if UIP_CONF_IPV6 /*TODO: put this in the right place */
|
#if UIP_CONF_IPV6 /*TODO: put this in the right place */
|
||||||
//CCIF struct uip_eth_addr uip_ethaddr={{0xff,0xff,0xff,0xff,0xff,0xff}};
|
//CCIF struct uip_eth_addr uip_ethaddr={{0xff,0xff,0xff,0xff,0xff,0xff}};
|
||||||
struct uip_eth_addr uip_ethaddr={{0xff,0xff,0xff,0xff,0xff,0xff}};
|
struct uip_eth_addr uip_ethaddr={{0xff,0xff,0xff,0xff,0xff,0xff}};
|
||||||
#endif /* #if UIP_CONF_IPV6 */
|
#endif /* UIP_CONF_IPV6 */
|
||||||
|
|
||||||
struct pcap;
|
struct pcap;
|
||||||
|
|
||||||
|
@ -149,6 +149,7 @@ init_pcap(struct in_addr addr)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
#if !UIP_CONF_IPV6
|
||||||
static void
|
static void
|
||||||
set_ethaddr(struct in_addr addr)
|
set_ethaddr(struct in_addr addr)
|
||||||
{
|
{
|
||||||
|
@ -193,9 +194,7 @@ set_ethaddr(struct in_addr addr)
|
||||||
adapters->PhysicalAddress[2], adapters->PhysicalAddress[3],
|
adapters->PhysicalAddress[2], adapters->PhysicalAddress[3],
|
||||||
adapters->PhysicalAddress[4], adapters->PhysicalAddress[5]);
|
adapters->PhysicalAddress[4], adapters->PhysicalAddress[5]);
|
||||||
log_message("set_ethaddr: ethernetaddr: ", buffer);
|
log_message("set_ethaddr: ethernetaddr: ", buffer);
|
||||||
#if !UIP_CONF_IPV6
|
|
||||||
uip_setethaddr((*(struct uip_eth_addr *)adapters->PhysicalAddress));
|
uip_setethaddr((*(struct uip_eth_addr *)adapters->PhysicalAddress));
|
||||||
#endif
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -206,6 +205,7 @@ set_ethaddr(struct in_addr addr)
|
||||||
error_exit("no adapter found with ip addr specified on cmdline\n");
|
error_exit("no adapter found with ip addr specified on cmdline\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif /* !UIP_CONF_IPV6 */
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
void
|
void
|
||||||
wpcap_init(void)
|
wpcap_init(void)
|
||||||
|
@ -238,7 +238,9 @@ wpcap_init(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
init_pcap(addr);
|
init_pcap(addr);
|
||||||
|
#if !UIP_CONF_IPV6
|
||||||
set_ethaddr(addr);
|
set_ethaddr(addr);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
u16_t
|
u16_t
|
||||||
|
|
Loading…
Reference in a new issue