david/ipxe
Archived
1
0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/include/ip.h

18 lines
245 B
C
Raw Normal View History

2005-03-08 19:53:11 +01:00
#ifndef _IP_H
#define _IP_H
struct iphdr {
uint8_t verhdrlen;
uint8_t service;
uint16_t len;
uint16_t ident;
uint16_t frags;
uint8_t ttl;
uint8_t protocol;
uint16_t chksum;
in_addr src;
in_addr dest;
} PACKED;
#endif /* _IP_H */