123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- #define ETHERMTU 1500
- #define ETHER_ADDR_LEN 6
- struct ether_header {
- uint8_t ether_dhost[ETHER_ADDR_LEN];
- uint8_t ether_shost[ETHER_ADDR_LEN];
- uint16_t ether_length_type;
- };
- #define ETHER_HDRLEN 14
|