VirtualBox

source: vbox/trunk/src/VBox/Devices/PC/Etherboot-src/include/udp.h@ 20295

最後變更 在這個檔案從20295是 1,由 vboxsync 提交於 55 年 前

import

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 407 位元組
 
1#ifndef _UDP_H
2#define _UDP_H
3
4#include "etherboot.h"
5#include "ip.h"
6
7struct 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;
14struct udphdr {
15 uint16_t src;
16 uint16_t dest;
17 uint16_t len;
18 uint16_t chksum;
19 struct {} payload;
20} PACKED;
21struct udppacket {
22 struct iphdr ip;
23 struct udphdr udp;
24 struct {} payload;
25} PACKED;
26
27#endif /* _UDP_H */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette