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.


Prints last exit reason when handler fails
[palacios-OLD.git] / palacios / src / palacios / vmm_packet.c
index 252bf11..bda3b1f 100644 (file)
@@ -32,6 +32,17 @@ int V3_send_raw(const char * pkt, uint32_t len) {
 }
 
 
+int V3_packet_add_recver(const char * mac, struct v3_vm_info * vm){
+
+    return packet_hooks->add_recver(mac, vm);
+}
+
+
+int V3_packet_del_recver(const char * mac, struct v3_vm_info * vm){
+
+    return packet_hooks->del_recver(mac, vm);
+}
+
 void V3_Init_Packet(struct v3_packet_hooks * hooks) {
     packet_hooks = hooks;
     PrintDebug("V3 raw packet interface inited\n");