Diff for /libaitrpc/src/cli.c between versions 1.19 and 1.20

version 1.19, 2013/09/05 00:43:05 version 1.20, 2013/11/15 09:55:53
Line 295  rpc_pkt_Receive(int sock, int type, sockaddr_t * __res Line 295  rpc_pkt_Receive(int sock, int type, sockaddr_t * __res
         if (!pkt) {          if (!pkt) {
                 rpc_SetErr(EINVAL, "Invalid argument(s)!");                  rpc_SetErr(EINVAL, "Invalid argument(s)!");
                 return -1;                  return -1;
        } else        } else {
                 buf = AIT_GET_BUF(pkt);                  buf = AIT_GET_BUF(pkt);
                   rpc = (struct tagRPCCall*) buf;
           }
   
         /* reply from RPC server */          /* reply from RPC server */
         do {          do {
                 if (type == SOCK_STREAM)                  if (type == SOCK_STREAM)
                         ret = rpc_Read(sock, type, !estlen ? MSG_PEEK : 0, NULL, buf, blen);                          ret = rpc_Read(sock, type, !estlen ? MSG_PEEK : 0, NULL, buf, blen);
                 else                  else
                        ret = rpc_Read(sock, type, 0, sa, buf, AIT_LEN(pkt));                        ret = rpc_Read(sock, type, !estlen ? MSG_PEEK : 0, sa, buf, blen);
                if (ret < 1) {                if (ret < 1)
                        LOGERR; 
                         return -1;                          return -1;
                 }  
   
                 /* check for response from known address */                  /* check for response from known address */
                if (type == SOCK_STREAM && !estlen) {                if (!estlen) {
                         /* 1st read for RPC header */                          /* 1st read for RPC header */
                         if (ret < sizeof(struct tagRPCCall)) {                          if (ret < sizeof(struct tagRPCCall)) {
                                 rpc_SetErr(ERPCMISMATCH, "Short RPC packet %d bytes", ret);                                  rpc_SetErr(ERPCMISMATCH, "Short RPC packet %d bytes", ret);
Line 318  rpc_pkt_Receive(int sock, int type, sockaddr_t * __res Line 318  rpc_pkt_Receive(int sock, int type, sockaddr_t * __res
                         }                          }
   
                         /* calc estimated length */                          /* calc estimated length */
                         rpc = (struct tagRPCCall*) buf;  
                         estlen = ntohl(rpc->call_len);                          estlen = ntohl(rpc->call_len);
                         if (estlen > AIT_LEN(pkt))                          if (estlen > AIT_LEN(pkt))
                                 AIT_RE_BUF(pkt, estlen);                                  AIT_RE_BUF(pkt, estlen);
                         buf = AIT_GET_BUF(pkt);                          buf = AIT_GET_BUF(pkt);
                         blen = estlen;  
                         rpc = (struct tagRPCCall*) buf;                          rpc = (struct tagRPCCall*) buf;
                           blen = estlen;
                         continue;                          continue;
                 }                  }
   
Line 332  rpc_pkt_Receive(int sock, int type, sockaddr_t * __res Line 331  rpc_pkt_Receive(int sock, int type, sockaddr_t * __res
                 break;                  break;
         } while (42);          } while (42);
   
        if (ret < sizeof(struct tagRPCCall)) {        if (ret < sizeof(struct tagRPCCall) || estlen != ret) {
                rpc_SetErr(ERPCMISMATCH, "Short RPC packet %d bytes", ret);                rpc_SetErr(ERPCMISMATCH, "RPC packet mismatch estimate %d bytes, but received %d\n", 
                                 estlen, ret);
                 return -1;                  return -1;
         }          }
   

Removed from v.1.19  
changed lines
  Added in v.1.20


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