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.


Add MAC address configure support on Virtio NIC
[palacios.git] / palacios / src / palacios / vmm_packet.c
index 252bf11..643fd1b 100644 (file)
@@ -32,6 +32,11 @@ int V3_send_raw(const char * pkt, uint32_t len) {
 }
 
 
+int V3_register_mac(const char * mac, struct v3_vm_info * vm){
+
+    return packet_hooks->register_mac(mac, vm);
+}
+
 void V3_Init_Packet(struct v3_packet_hooks * hooks) {
     packet_hooks = hooks;
     PrintDebug("V3 raw packet interface inited\n");