Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Bring home connected socket macros.
authorcherierm <cherierm@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 29 Sep 2006 09:16:34 +0000 (09:16 +0000)
committercherierm <cherierm@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 29 Sep 2006 09:16:34 +0000 (09:16 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2847 48e7efb5-ca39-0410-a469-dd3cf9ba447f

src/win32/config.h

index 6d12290..dc9cf93 100644 (file)
 # error "Unknown compiler - please report the problems to the main simgrid mailing list (http://gforge.inria.fr/mail/?group_id=12)"
 #endif
 
+
+#define tcp_read( s, buf, len )        recv( s, buf, len, 0 )
+#define tcp_write( s, buf, len )       send( s, buf, len, 0 )
+#define ioctl( s, c, a )               ioctlsocket( (s), (c), (a) )
+#define ioctl_t                                                u_long
+#define AC_SOCKET_INVALID              ((unsigned int) ~0)
+
+#ifdef SD_BOTH
+       #define tcp_close(s)    (shutdown( s, SD_BOTH ), closesocket(s))
+#else
+       #define tcp_close( s )  closesocket( s )
+#endif
+
+#ifndef EWOULDBLOCK
+       #define EWOULDBLOCK WSAEWOULDBLOCK
+#endif
+
+#ifndef EINPROGRESS
+       #define EINPROGRESS WSAEINPROGRESS
+#endif
+
+#ifndef ETIMEDOUT
+       #define ETIMEDOUT   WSAETIMEDOUT
+#endif
+
+#ifdef sock_errno
+       #undef  sock_errno
+#endif
+
+#define sock_errno         WSAGetLastError()
+
+#ifdef sock_errstr
+       #undef  sock_errstr
+#endif
+
+#define sock_errstr(err)   gras_wsa_err2string(err)
+
+const char *gras_wsa_err2string(int errcode);
+
+#ifdef S_IRGRP
+       #undef S_IRGRP
+#endif
+
+#define S_IRGRP 0
+
+#ifdef S_IWGRP
+       #undef S_IWGRP
+#endif
+
+#define S_IWGRP 0
+
        
 
 #endif /* #ifndef __XBT_WIN32_CONFIG_H__ */
\ No newline at end of file