mirror of
https://github.com/xcat2/xNBA.git
synced 2025-01-05 19:15:05 +00:00
Do not include etherboot.h
This commit is contained in:
parent
552f33c663
commit
89f4fe4a8a
@ -1,6 +1,10 @@
|
||||
#ifndef _IP_H
|
||||
#define _IP_H
|
||||
|
||||
#include "stddef.h"
|
||||
#include "stdint.h"
|
||||
#include "in.h"
|
||||
|
||||
struct iphdr {
|
||||
uint8_t verhdrlen;
|
||||
uint8_t service;
|
||||
@ -10,8 +14,8 @@ struct iphdr {
|
||||
uint8_t ttl;
|
||||
uint8_t protocol;
|
||||
uint16_t chksum;
|
||||
in_addr src;
|
||||
in_addr dest;
|
||||
struct in_addr src;
|
||||
struct in_addr dest;
|
||||
} PACKED;
|
||||
|
||||
#endif /* _IP_H */
|
||||
|
@ -1,12 +1,14 @@
|
||||
#ifndef _UDP_H
|
||||
#define _UDP_H
|
||||
|
||||
#include "etherboot.h"
|
||||
#include "stddef.h"
|
||||
#include "stdint.h"
|
||||
#include "in.h"
|
||||
#include "ip.h"
|
||||
|
||||
struct udp_pseudo_hdr {
|
||||
in_addr src;
|
||||
in_addr dest;
|
||||
struct in_addr src;
|
||||
struct in_addr dest;
|
||||
uint8_t unused;
|
||||
uint8_t protocol;
|
||||
uint16_t len;
|
||||
|
Loading…
Reference in New Issue
Block a user