Sorry to follow up my own post, but...
More specifically, it appears the packet does
try and transmit, but the destination MAC is
(uninitialised?) somewhat random, different
on each packet, not legal.
I can capture it on the correct output interface
with tcpdump. The interface type is xl.
Shouldn't the stack ARP for the destination
in my 'sendto', and fill in the ether header?
The ether-source is filled in, presumably by
the driver.
_______________________________________________
freeb...@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-net
To unsubscribe, send any mail to "freebsd-net...@freebsd.org"
I think Don is referring to the fact that IP_HDRINCL in our stack expects
to see these fields in host byte order (as per my update of the ip(4) manual
page quite recently). Raw socket stuff being different from bpf stuff.
BMS