Diff for /mqtt/src/client.c between versions 1.4.4.1 and 1.5

version 1.4.4.1, 2013/01/18 10:17:22 version 1.5, 2017/10/08 22:49:24
Line 129  CloseFile(void) Line 129  CloseFile(void)
         }          }
 }  }
   
inline intint
 SendTo(int sock, int siz)  SendTo(int sock, int siz)
 {  {
         siz = send(sock, args->msg->msg_base, siz, MSG_NOSIGNAL);          siz = send(sock, args->msg->msg_base, siz, MSG_NOSIGNAL);
Line 142  SendTo(int sock, int siz) Line 142  SendTo(int sock, int siz)
         return siz;          return siz;
 }  }
   
inline intint
 RecvFrom(int sock)  RecvFrom(int sock)
 {  {
         struct pollfd pfd;          struct pollfd pfd;

Removed from v.1.4.4.1  
changed lines
  Added in v.1.5


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>