--- libaitrpc/example/tcli.c 2015/07/02 22:28:13 1.20 +++ libaitrpc/example/tcli.c 2024/03/20 17:32:30 1.22 @@ -23,10 +23,10 @@ int main(int argc, char **argv) if (argc > 2) cli = rpc_cli_openClient(2, 1024 * 10, "127.0.0.1", 0, SOCK_RAW); else - cli = rpc_cli_openClient(2, 1024 * 10, "127.0.0.1", 11111, SOCK_DGRAM); + cli = rpc_cli_openClient(2, 1024 * 10, "127.0.0.1", 11112, SOCK_DGRAM); } else // cli = rpc_cli_openClient(2, 1024 * 10, "93.123.104.1", 11111, 0); - cli = rpc_cli_openClient(2, 1024 * 10, "127.0.0.1", 11111, 0); + cli = rpc_cli_openClient(2, 1024 * 10, "127.0.0.1", 11112, 0); if (!cli) { printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); e_free(blob43); @@ -60,7 +60,7 @@ int main(int argc, char **argv) printf("\n\n2 pass>>> RPC ping without reply!!!\n\n"); for (i = 0; i < 10; i++) { gettimeofday(&before, NULL); - if (rpc_cli_execCall(cli, RPC_NOREPLY, CALL_SRVPING, NULL, &arr)) { + if (rpc_cli_execCall(cli, RPC_NOREPLY, CALL_SRVPING, NULL, &arr) == -1) { printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); rpc_cli_closeBLOBClient(&cli2); rpc_cli_closeClient(&cli);