Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Restructure of direct host network bridge.
[palacios.git] / palacios / include / palacios / vmm_host_events.h
index b762501..47c6715 100644 (file)
@@ -43,6 +43,11 @@ struct v3_console_event {
     unsigned int cmd;
 };
 
+struct v3_packet_event {
+    unsigned char * pkt;
+    unsigned int size;
+};
+
 #ifdef __V3VEE__
 
 #include <palacios/vmm_list.h>
@@ -53,7 +58,7 @@ typedef enum { HOST_KEYBOARD_EVT,
               HOST_MOUSE_EVT, 
               HOST_TIMER_EVT,
               HOST_CONSOLE_EVT,
-              HOST_SERIAL_EVT } v3_host_evt_type_t;
+              HOST_SERIAL_EVT} v3_host_evt_type_t;
 
 
 union v3_host_event_handler {
@@ -84,6 +89,7 @@ struct v3_host_events {
 
 
 int v3_init_host_events(struct v3_vm_info * vm);
+int v3_deinit_host_events(struct v3_vm_info * vm);
 
 #define V3_HOST_EVENT_HANDLER(cb) ((union v3_host_event_handler)cb)
 
@@ -103,5 +109,4 @@ int v3_deliver_serial_event(struct v3_vm_info * vm, struct v3_serial_event * evt
 int v3_deliver_console_event(struct v3_vm_info * vm, struct v3_console_event * evt);
 
 
-
 #endif