Commit-ID: 0433685947d3f8777c35e0b76fb77cc09b28bc0d Gitweb: http://git.kernel.org/tip/0433685947d3f8777c35e0b76fb77cc09b28bc0d Author: Asias He <asias.hejun@xxxxxxxxx> AuthorDate: Wed, 29 Jun 2011 16:47:11 +0800 Committer: Pekka Enberg <penberg@xxxxxxxxxx> CommitDate: Thu, 30 Jun 2011 10:42:08 +0300 kvm tools: Introduce struct uip_udp to present UDP package Signed-off-by: Asias He <asias.hejun@xxxxxxxxx> Signed-off-by: Pekka Enberg <penberg@xxxxxxxxxx> --- tools/kvm/include/kvm/uip.h | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/tools/kvm/include/kvm/uip.h b/tools/kvm/include/kvm/uip.h index b9fa932..e220403 100644 --- a/tools/kvm/include/kvm/uip.h +++ b/tools/kvm/include/kvm/uip.h @@ -60,6 +60,21 @@ struct uip_icmp { u16 seq; } __attribute__((packed)); +struct uip_udp { + /* + * FIXME: IP Options (IP hdr len > 20 bytes) are not supported + */ + struct uip_ip ip; + u16 sport; + u16 dport; + /* + * len = UDP hdr + UDP payload + */ + u16 len; + u16 csum; + u8 payload[0]; +} __attribute__((packed)); + struct uip_info { struct list_head udp_socket_head; struct list_head tcp_socket_head; -- To unsubscribe from this list: send the line "unsubscribe linux-tip-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html
![]() |