X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=blobdiff_plain;f=palacios%2Finclude%2Fpalacios%2Fvmm_socket.h;h=2108d57af67d72a0ba82ef0a7dd1e726063ea830;hp=1e1d5f32ed49a3e93e0dbf5dc9fadfbc38580e26;hb=3b67b03716ad6bfdda5c95c8a0ef9004da1b3913;hpb=660d3c512aa3299ede91a0b2e24d8b5cde6306da diff --git a/palacios/include/palacios/vmm_socket.h b/palacios/include/palacios/vmm_socket.h index 1e1d5f3..2108d57 100644 --- a/palacios/include/palacios/vmm_socket.h +++ b/palacios/include/palacios/vmm_socket.h @@ -204,41 +204,41 @@ struct v3_timeval { #define V3_SOCK_SETSIZE 1000 typedef struct v3_sock_set { - // This format needs to match the standard posix FD_SET format, so it can be cast + /* This format needs to match the standard posix FD_SET format, so it can be cast */ unsigned char fd_bits [(V3_SOCK_SETSIZE + 7) / 8]; } v3_sock_set; struct v3_socket_hooks { - // Socket creation routines + /* Socket creation routines */ int (*tcp_socket)(const int bufsize, const int nodelay, const int nonblocking); int (*udp_socket)(const int bufsize, const int nonblocking); - // Socket Destruction + /* Socket Destruction */ void (*close)(int sock); - // Network Server Calls + /* Network Server Calls */ int (*bind_socket)(const int sock, const int port); int (*listen)(const int sock, int backlog); int (*accept)(const int sock, unsigned int * remote_ip, unsigned int * port); - // This going to suck + /* This going to suck */ int (*select)(struct v3_sock_set * rset, \ struct v3_sock_set * wset, \ struct v3_sock_set * eset, \ struct v3_timeval tv); - // Connect calls + /* Connect calls */ int (*connect_to_ip)(const int sock, const int hostip, const int port); int (*connect_to_host)(const int sock, const char * hostname, const int port); - // TCP Data Transfer + /* TCP Data Transfer */ int (*send)(const int sock, const char * buf, const int len); int (*recv)(const int sock, char * buf, const int len); - // UDP Data Transfer + /* UDP Data Transfer */ int (*sendto_host)(const int sock, const char * hostname, const int port, const char * buf, const int len); int (*sendto_ip)(const int sock, const int ip_addr, const int port,