repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
vm: allow split of mem_anon_contig region
[minix3.git]
/
minix
/
include
/
net
/
gen
/
udp_io_hdr.h
blob
17ada03a9002645073903c3eea0e04d2dd25e4ab
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__ */