vm: allow split of mem_anon_contig region
[minix3.git] / minix / include / net / gen / udp_io_hdr.h
blob17ada03a9002645073903c3eea0e04d2dd25e4ab
1 #ifndef __SERVER__IP__GEN__UDP_IO_HDR_H__
2 #define __SERVER__IP__GEN__UDP_IO_HDR_H__
5 typedef struct udp_io_hdr
7 ipaddr_t uih_src_addr;
8 ipaddr_t uih_dst_addr;
9 udpport_t uih_src_port;
10 udpport_t uih_dst_port;
11 u16_t uih_ip_opt_len;
12 u16_t uih_data_len;
13 } udp_io_hdr_t;
16 #endif /* __SERVER__IP__GEN__UDP_IO_HDR_H__ */