Diff for /libaitrpc/example/tcli.c between versions 1.20 and 1.22

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

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


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