xref: /minix3/minix/include/net/gen/udp_io_hdr.h (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1*433d6423SLionel Sambuc #ifndef __SERVER__IP__GEN__UDP_IO_HDR_H__
2*433d6423SLionel Sambuc #define __SERVER__IP__GEN__UDP_IO_HDR_H__
3*433d6423SLionel Sambuc 
4*433d6423SLionel Sambuc 
5*433d6423SLionel Sambuc typedef struct udp_io_hdr
6*433d6423SLionel Sambuc {
7*433d6423SLionel Sambuc 	ipaddr_t uih_src_addr;
8*433d6423SLionel Sambuc 	ipaddr_t uih_dst_addr;
9*433d6423SLionel Sambuc 	udpport_t uih_src_port;
10*433d6423SLionel Sambuc 	udpport_t uih_dst_port;
11*433d6423SLionel Sambuc 	u16_t uih_ip_opt_len;
12*433d6423SLionel Sambuc 	u16_t uih_data_len;
13*433d6423SLionel Sambuc } udp_io_hdr_t;
14*433d6423SLionel Sambuc 
15*433d6423SLionel Sambuc 
16*433d6423SLionel Sambuc #endif /* __SERVER__IP__GEN__UDP_IO_HDR_H__ */
17