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.


changed deinitialization prototype to be compatible with Linux declarations
[palacios.git] / palacios / include / palacios / vmm_packet.h
index 8f696e2..f343821 100644 (file)
 
 #ifdef __V3VEE__
 
-int V3_send_raw(const char * pkt, const int len);
+int V3_send_raw(const char * pkt, uint32_t len);
 
 #endif
 
 struct v3_packet_hooks {
 
-    int (*send)(const char * pkt, const int size, void * private_data);
+    int (*send)(const char * pkt, unsigned int size, void * private_data);
 
 };