Diff for /libaitrpc/src/cli.c between versions 1.9.2.9 and 1.9.2.11

version 1.9.2.9, 2012/05/17 14:22:24 version 1.9.2.11, 2012/05/17 15:21:08
Line 102  rpc_cli_openBLOBClient(rpc_cli_t * __restrict rpccli,  Line 102  rpc_cli_openBLOBClient(rpc_cli_t * __restrict rpccli, 
                 close(cli->cli_sock);                  close(cli->cli_sock);
                 free(cli);                  free(cli);
                 return NULL;                  return NULL;
        }        } else
                 fcntl(cli->cli_sock, F_SETFL, fcntl(cli->cli_sock, F_GETFL) | O_NONBLOCK);
   
         return cli;          return cli;
 }  }
Line 135  rpc_cli_closeBLOBClient(rpc_cli_t ** __restrict cli) Line 136  rpc_cli_closeBLOBClient(rpc_cli_t ** __restrict cli)
  *   *
  * @ProgID = ProgramID for RPC session request   * @ProgID = ProgramID for RPC session request
  * @ProcID = ProcessID for RPC session request   * @ProcID = ProcessID for RPC session request
 * @netBuf = Network buffer length, if =0 == BUFSIZ (also meaning max RPC packet) * @netBuf = Network buffer length (min:512 bytes), if =0 == BUFSIZ (also meaning max RPC packet)
  * @csHost = Host name or IP address for bind server   * @csHost = Host name or IP address for bind server
  * @Port = Port for bind server, if Port == 0 default port is selected   * @Port = Port for bind server, if Port == 0 default port is selected
  * return: NULL == error or !=NULL connection to RPC server established   * return: NULL == error or !=NULL connection to RPC server established
Line 150  rpc_cli_openClient(u_int ProgID, u_char ProcID, int ne Line 151  rpc_cli_openClient(u_int ProgID, u_char ProcID, int ne
                 return NULL;                  return NULL;
         if (!Port)          if (!Port)
                 Port = RPC_DEFPORT;                  Port = RPC_DEFPORT;
        if (!netBuf)        if (netBuf < RPC_MIN_BUFSIZ)
                 netBuf = BUFSIZ;                  netBuf = BUFSIZ;
           else
                   netBuf = io_align(netBuf, 1);   /* align netBuf length */
   
 #ifdef HAVE_SRANDOMDEV  #ifdef HAVE_SRANDOMDEV
         srandomdev();          srandomdev();
Line 199  rpc_cli_openClient(u_int ProgID, u_char ProcID, int ne Line 202  rpc_cli_openClient(u_int ProgID, u_char ProcID, int ne
                 free(cli->cli_parent);                  free(cli->cli_parent);
                 free(cli);                  free(cli);
                 return NULL;                  return NULL;
        }        } else
                 fcntl(cli->cli_sock, F_SETFL, fcntl(cli->cli_sock, F_GETFL) | O_NONBLOCK);
   
         return cli;          return cli;
 }  }

Removed from v.1.9.2.9  
changed lines
  Added in v.1.9.2.11


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