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

version 1.4.4.1, 2013/01/18 10:17:22 version 1.4.4.2, 2013/07/19 09:11:48
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.4.4.2


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