Merge nixio 0.2
[project/luci.git] / libs / nixio / src / socket.c
index 258cdee..17c6afc 100644 (file)
  */
 
 #include "nixio.h"
-#include <sys/socket.h>
-#include <netinet/in.h>
 #include <unistd.h>
 #include <string.h>
 #include <errno.h>
-#include "nixio.h"
 
 
 /**
@@ -79,7 +76,7 @@ static int nixio_socket(lua_State *L) {
        sock->fd = socket(sock->domain, sock->type, sock->protocol);
 
        if (sock->fd < 0) {
-               return nixio__perror(L);
+               return nixio__perror_s(L);
        }
 
        return 1;
@@ -91,8 +88,18 @@ static int nixio_socket(lua_State *L) {
 static int nixio_sock_close(lua_State *L) {
        nixio_sock *sock = nixio__checksock(L);
        int sockfd = sock->fd;
+       int res;
        sock->fd = -1;
-       return nixio__pstatus(L, !close(sockfd));
+
+       do {
+#ifndef __WINNT__
+               res = close(sockfd);
+#else
+               res = closesocket(sockfd);
+#endif
+       } while (res == -1 && errno == EINTR);
+
+       return nixio__pstatus_s(L, !res);
 }
 
 /**
@@ -100,8 +107,15 @@ static int nixio_sock_close(lua_State *L) {
  */
 static int nixio_sock__gc(lua_State *L) {
        nixio_sock *sock = (nixio_sock*)luaL_checkudata(L, 1, NIXIO_META);
+       int res;
        if (sock && sock->fd != -1) {
-               close(sock->fd);
+               do {
+#ifndef __WINNT__
+                       res = close(sock->fd);
+#else
+                       res = closesocket(sock->fd);
+#endif
+               } while (res == -1 && errno == EINTR);
        }
        return 0;
 }
@@ -132,7 +146,7 @@ static int nixio_sock_shutdown(lua_State *L) {
                return luaL_argerror(L, 2, "supported values: both, read, write");
        }
 
-       return nixio__pstatus(L, !shutdown(sockfd, how));
+       return nixio__pstatus_s(L, !shutdown(sockfd, how));
 }
 
 /* module table */