source:
vbox/trunk/src/VBox/Devices/PC/Etherboot-src/include/udp.h@
20295
最後變更 在這個檔案從20295是 1,由 提交於 55 年 前 | |
---|---|
|
|
檔案大小: 407 位元組 |
行 | |
---|---|
1 | #ifndef _UDP_H |
2 | #define _UDP_H |
3 | |
4 | #include "etherboot.h" |
5 | #include "ip.h" |
6 | |
7 | struct udp_pseudo_hdr { |
8 | in_addr src; |
9 | in_addr dest; |
10 | uint8_t unused; |
11 | uint8_t protocol; |
12 | uint16_t len; |
13 | } PACKED; |
14 | struct udphdr { |
15 | uint16_t src; |
16 | uint16_t dest; |
17 | uint16_t len; |
18 | uint16_t chksum; |
19 | struct {} payload; |
20 | } PACKED; |
21 | struct udppacket { |
22 | struct iphdr ip; |
23 | struct udphdr udp; |
24 | struct {} payload; |
25 | } PACKED; |
26 | |
27 | #endif /* _UDP_H */ |
注意:
瀏覽 TracBrowser
來幫助您使用儲存庫瀏覽器