<net/if_ether.h>
[minix3.git] / include / net / gen / udp_hdr.h
blob671f93e9d06f628469b427a0e3f97b431511f104
1 /*
2 server/ip/gen/udp_hdr.h
3 */
5 #ifndef __SERVER__IP__GEN__UDP_HDR_H__
6 #define __SERVER__IP__GEN__UDP_HDR_H__
8 /*
9 * Included for compatibility with programs which assume udp_io_hdr_t to be
10 * defined in this header file
12 #include "udp_io_hdr.h"
14 typedef struct udp_hdr
16 udpport_t uh_src_port;
17 udpport_t uh_dst_port;
18 u16_t uh_length;
19 u16_t uh_chksum;
20 } udp_hdr_t;
22 #endif /* __SERVER__IP__GEN__UDP_HDR_H__ */