summaryrefslogtreecommitdiffstats
path: root/src/include/ip.h
blob: 85c299ba9eca859ff7cc5b6a8bd7c41cfa393415 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef	_IP_H
#define	_IP_H

#include "stddef.h"
#include "stdint.h"
#include "in.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;
	struct in_addr src;
	struct in_addr dest;
} PACKED;

#endif	/* _IP_H */