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.


debugging tweaks and minor fixes
[palacios.git] / palacios / include / palacios / vmm_dev_mgr.h
index dd62093..8c80ffa 100644 (file)
@@ -157,6 +157,8 @@ struct v3_dev_blk_ops {
 };
 
 struct v3_dev_net_ops {
+    int (*send)(uint8_t * buf, uint32_t count, void * private_data, struct vm_device *dest_dev);
+    int (*receive)(uint8_t * buf, uint32_t count, void * private_data, struct vm_device *src_dev);
 
 };
 
@@ -186,6 +188,7 @@ int v3_dev_add_net_frontend(struct guest_info * info,
                                            v3_cfg_tree_t * cfg, 
                                            void * private_data), 
                            void * priv_data);
+
 int v3_dev_connect_net(struct guest_info * info, 
                       char * frontend_name, 
                       struct v3_dev_net_ops * ops,