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.


added bounds checking for bitmap updates
[palacios.git] / linux_module / palacios-vnet.h
index 56ac9f1..6989b15 100644 (file)
@@ -1,6 +1,5 @@
 /*
- * Palacios VNET Host Header
- * (c) Lei Xia, 2010
+ * Lei Xia 2010
  */
 
 #ifndef __PALACIOS_VNET_H__
@@ -8,8 +7,6 @@
 
 #include <vnet/vnet.h>
 
-int  palacios_vnet_init(void);
-void palacios_vnet_deinit(void);
 
 typedef enum {UDP, TCP, RAW, NONE} vnet_brg_proto_t;
 
@@ -26,6 +23,8 @@ void vnet_brg_delete_link(uint32_t idx);
 uint32_t vnet_brg_add_link(uint32_t ip, uint16_t port, vnet_brg_proto_t proto);
 int vnet_brg_link_stats(uint32_t link_idx, struct nic_statistics * stats);
 int vnet_brg_stats(struct vnet_brg_stats * stats);
+
+
 int  vnet_bridge_init(void);
 void vnet_bridge_deinit(void);