--- libaitrpc/src/aitrpc.c 2013/11/15 09:55:52 1.13 +++ libaitrpc/src/aitrpc.c 2014/01/28 14:05:43 1.15 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ -* $Id: aitrpc.c,v 1.13 2013/11/15 09:55:52 misho Exp $ +* $Id: aitrpc.c,v 1.15 2014/01/28 14:05:43 misho Exp $ * ************************************************************************** The ELWIX and AITNET software is distributed under the following @@ -12,7 +12,7 @@ terms: All of the documentation and software included in the ELWIX and AITNET Releases is copyrighted by ELWIX - Sofia/Bulgaria -Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 +Copyright 2004 - 2014 by Michael Pounov . All rights reserved. Redistribution and use in source and binary forms, with or without @@ -149,7 +149,7 @@ rpc_addPktSession(rpc_sess_t *p, rpc_sess_t *s) * @sa = check client address, if you use udp protocol * @buf = buffer * @blen = buffer length - * return: -1 error or >-1 readed bytes into buffer + * return: -1 error, 0 EOF or or >0 readed bytes into buffer */ ssize_t rpc_Read(int sock, int type, int flags, sockaddr_t * __restrict sa, @@ -189,6 +189,8 @@ rpc_Read(int sock, int type, int flags, sockaddr_t * _ LOGERR; return -1; } + if (!ret) /* EOF */ + return 0; } ret = blen - len; @@ -204,7 +206,7 @@ rpc_Read(int sock, int type, int flags, sockaddr_t * _ * @sa = send to client address, if you use udp protocol * @buf = buffer * @blen = buffer length - * return: -1 error or >-1 written bytes into buffer + * return: -1 error, 0 EOF or >0 written bytes into buffer */ ssize_t rpc_Write(int sock, int type, int flags, sockaddr_t * __restrict sa, @@ -218,8 +220,10 @@ rpc_Write(int sock, int type, int flags, sockaddr_t * for (len = blen; len > 0; len -= ret, buf += ret) { if ((ret = poll(&pfd, 1, DEF_RPC_TIMEOUT * 1000)) < 1 || pfd.revents & (POLLERR | POLLHUP | POLLNVAL)) { +#if 0 if (!ret) continue; +#endif if (ret > 0) rpc_SetErr(EPIPE, "Disconnected RPC session\n"); else @@ -238,6 +242,8 @@ rpc_Write(int sock, int type, int flags, sockaddr_t * LOGERR; return -1; } + if (!ret) /* EOF */ + return 0; } ret = blen - len; if (ret != blen) {