root / lab4 / .minix-src / include / net / gen / udp_io_hdr.h
History | View | Annotate | Download (321 Bytes)
1 |
#ifndef __SERVER__IP__GEN__UDP_IO_HDR_H__
|
---|---|
2 |
#define __SERVER__IP__GEN__UDP_IO_HDR_H__
|
3 |
|
4 |
|
5 |
typedef struct udp_io_hdr |
6 |
{ |
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; |
14 |
|
15 |
|
16 |
#endif /* __SERVER__IP__GEN__UDP_IO_HDR_H__ */ |