summaryrefslogtreecommitdiffstats
path: root/src/include/udp.h
blob: 7814c5f43195e915c6b7110cf586631ff9101c76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef	_UDP_H
#define	_UDP_H

#include "stddef.h"
#include "stdint.h"
#include <gpxe/in.h>
#include "ip.h"

struct udp_pseudo_hdr {
	struct in_addr  src;
	struct in_addr  dest;
	uint8_t  unused;
	uint8_t  protocol;
	uint16_t len;
} PACKED;
struct udphdr {
	uint16_t src;
	uint16_t dest;
	uint16_t len;
	uint16_t chksum;
	struct {} payload;
} PACKED;
struct udppacket {
	struct iphdr	ip;
	struct udphdr	udp;
	struct {} payload;
} PACKED;

#endif	/* _UDP_H */