struct uip_udp_socket is used to present every "connection" between
guest and remote host.

Signed-off-by: Asias He <[email protected]>
---
 tools/kvm/include/kvm/uip.h |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/tools/kvm/include/kvm/uip.h b/tools/kvm/include/kvm/uip.h
index 35c7c23..473b9c7 100644
--- a/tools/kvm/include/kvm/uip.h
+++ b/tools/kvm/include/kvm/uip.h
@@ -114,6 +114,15 @@ struct uip_buf {
        int id;
 };
 
+struct uip_udp_socket {
+       struct sockaddr_in addr;
+       struct list_head list;
+       pthread_mutex_t *lock;
+       u32 dport, sport;
+       u32 dip, sip;
+       int fd;
+};
+
 struct uip_tx_arg {
        struct virtio_net_hdr *vnet;
        struct uip_info *info;
-- 
1.7.5.4

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to