--- libaitrpc/example/tcli.c 2012/05/17 12:53:01 1.7.4.5 +++ libaitrpc/example/tcli.c 2012/05/17 13:02:03 1.7.4.6 @@ -20,10 +20,19 @@ int main() return 1; } + cli2 = rpc_cli_openBLOBClient(cli, 0); + if (!cli2) { + printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); + rpc_cli_closeClient(&cli); + free(blob43); + return 1; + } + for (i = 0; i < 10000; i++) { gettimeofday(&before, NULL); if (rpc_cli_execCall(cli, RPC_REPLY, CALL_SRVPING, NULL, &arr)) { printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); + rpc_cli_closeBLOBClient(&cli2); rpc_cli_closeClient(&cli); free(blob43); return 127; @@ -38,6 +47,7 @@ int main() gettimeofday(&before, NULL); if (rpc_cli_execCall(cli, RPC_NOREPLY, CALL_SRVPING, NULL, &arr)) { printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); + rpc_cli_closeBLOBClient(&cli2); rpc_cli_closeClient(&cli); free(blob43); return 127; @@ -46,14 +56,6 @@ int main() io_freeVars(&arr); printf("RPC ping #%d --- %f\n", i, (after.tv_sec - before.tv_sec) + (after.tv_usec - before.tv_usec) / 1.e6); - } - - cli2 = rpc_cli_openBLOBClient(cli, 0); - if (!cli2) { - printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); - rpc_cli_closeClient(&cli); - free(blob43); - return 1; } memset(blob43, 0, 512);