X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=lib%2Fsocket.c;h=fe2068c54029c516f53c64ceebf7c0517699cb99;hb=a8a1b85846aab042cd410bf59caf617a0951380e;hp=f2943cdfb4c1c7d379ae2f189206d0d8580215be;hpb=4b1097cde2eca9366c833805a529c23f7a7b02d6;p=deb_libnfs.git diff --git a/lib/socket.c b/lib/socket.c index f2943cd..fe2068c 100644 --- a/lib/socket.c +++ b/lib/socket.c @@ -14,6 +14,16 @@ You should have received a copy of the GNU Lesser General Public License along with this program; if not, see . */ +#ifdef WIN32 +#include "win32_compat.h" +#else +#include +#include +#include +#include +#include +#include +#endif/*WIN32*/ #if defined(WIN32) #include @@ -61,7 +71,7 @@ static void set_nonblocking(int fd) unsigned v; v = fcntl(fd, F_GETFL, 0); fcntl(fd, F_SETFL, v | O_NONBLOCK); -#endif +#endif //FIXME } int rpc_get_fd(struct rpc_context *rpc) @@ -140,6 +150,7 @@ static int rpc_read_from_socket(struct rpc_context *rpc) rpc_set_error(rpc, "Ioctl FIONREAD returned error : %d. Closing socket.", errno); return -1; } + if (available == 0) { rpc_set_error(rpc, "Socket has been closed"); return -1; @@ -254,7 +265,7 @@ static int rpc_read_from_socket(struct rpc_context *rpc) int rpc_service(struct rpc_context *rpc, int revents) { if (revents & POLLERR) { - int err = 0; + char err = 0; socklen_t err_size = sizeof(err); if (getsockopt(rpc->fd, SOL_SOCKET, SO_ERROR,