X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fpalacios%2Fvmm_socket.c;fp=palacios%2Fsrc%2Fpalacios%2Fvmm_socket.c;h=854668809315268823ebf92f51f6e6d16633e5ce;hb=a3a2224fa5e7d5c9d0ef2fe29bae0ccfb373ba26;hp=0000000000000000000000000000000000000000;hpb=9fb158db4a082626c5cef84686bff96a456bbe7a;p=palacios.git diff --git a/palacios/src/palacios/vmm_socket.c b/palacios/src/palacios/vmm_socket.c new file mode 100644 index 0000000..8546688 --- /dev/null +++ b/palacios/src/palacios/vmm_socket.c @@ -0,0 +1,31 @@ +/* + * This file is part of the Palacios Virtual Machine Monitor developed + * by the V3VEE Project with funding from the United States National + * Science Foundation and the Department of Energy. + * + * The V3VEE Project is a joint project between Northwestern University + * and the University of New Mexico. You can find out more at + * http://www.v3vee.org + * + * Copyright (c) 2008, Jack Lange + * Copyright (c) 2008, The V3VEE Project + * All rights reserved. + * + * Author: Jack Lange + * + * This is free software. You are permitted to use, + * redistribute, and modify it as specified in the file "V3VEE_LICENSE". + */ + + +#include + +struct v3_socket_hooks * sock_hooks = 0; + + + + +void V3_Init_Sockets(struct v3_socket_hooks * hooks) { + PrintInfo("Initializing Socket Interface\n"); + sock_hooks = hooks; +}