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.


10bdbda6fb59c01eaa1d0ca74915d43f0d698b93
[palacios.git] / palacios / src / interfaces / vmm_packet.c
1 /*
2  * This file is part of the Palacios Virtual Machine Monitor developed
3  * by the V3VEE Project with funding from the United States National 
4  * Science Foundation and the Department of Energy.  
5  *
6  * The V3VEE Project is a joint project between Northwestern University
7  * and the University of New Mexico.  You can find out more at 
8  * http://www.v3vee.org
9  *
10  * Copyright (c) 2010, Lei Xia <lxia@cs.northwestern.edu> 
11  * Copyright (c) 2010, The V3VEE Project <http://www.v3vee.org> 
12  * All rights reserved.
13  *
14  * Author: Lei Xia <lxia@cs.northwestern.edu>
15  *
16  * This is free software.  You are permitted to use,
17  * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
18  */
19
20 #include <palacios/vmm.h>
21 #include <palacios/vmm_debug.h>
22 #include <palacios/vmm_types.h>
23 #include <palacios/vm_guest.h>
24 #include <interfaces/vmm_packet.h>
25
26 static struct v3_packet_hooks * packet_hooks = 0;
27
28 int V3_send_raw(const char * pkt, uint32_t len) {
29     if(packet_hooks != NULL && packet_hooks->send != NULL){
30         return packet_hooks->send(pkt, len, NULL);
31     }
32
33     return -1;
34 }
35
36
37 int V3_packet_add_recver(const char * mac, struct v3_vm_info * vm){
38     if(packet_hooks != NULL && packet_hooks->add_recver != NULL){
39         return packet_hooks->add_recver(mac, vm);
40     }
41
42     return -1;
43 }
44
45
46 int V3_packet_del_recver(const char * mac, struct v3_vm_info * vm){
47     if(packet_hooks != NULL && packet_hooks->del_recver != NULL){
48         return packet_hooks->del_recver(mac, vm);
49     }
50
51     return -1;
52 }
53
54 void V3_Init_Packet(struct v3_packet_hooks * hooks) {
55     packet_hooks = hooks;
56     PrintDebug("V3 raw packet interface inited\n");
57
58     return;
59 }