diff options
author | Michael Brown <mcb30@etherboot.org> | 2007-07-02 20:05:58 +0100 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2007-07-02 20:05:58 +0100 |
commit | 332614a382c5e435e61509d130872e143670df56 (patch) | |
tree | 416f2a207e7b4e6b223296d257fe254d8c2fcb73 /src/net/ethernet.c | |
parent | e42eba4af49729c5535512d8b83ea6d18a8e3e95 (diff) | |
download | ipxe-332614a382c5e435e61509d130872e143670df56.tar.gz |
Add untested support for UNDI transmit and receive.
Diffstat (limited to 'src/net/ethernet.c')
-rw-r--r-- | src/net/ethernet.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/net/ethernet.c b/src/net/ethernet.c index 7108beff0..8f259fb39 100644 --- a/src/net/ethernet.c +++ b/src/net/ethernet.c @@ -108,6 +108,7 @@ struct ll_protocol ethernet_protocol __ll_protocol = { .name = "Ethernet", .ll_proto = htons ( ARPHRD_ETHER ), .ll_addr_len = ETH_ALEN, + .ll_header_len = ETH_HLEN, .ll_broadcast = eth_broadcast, .tx = eth_tx, .rx = eth_rx, |