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

version 1.19, 2015/05/18 15:09:59 version 1.22, 2024/03/20 17:32:30
Line 1 Line 1
 #include <stdio.h>  #include <stdio.h>
   #include <string.h>
   #include <errno.h>
 #include <sys/time.h>  #include <sys/time.h>
 #include <pthread.h>  #include <pthread.h>
#include <aitrpc.h>#include <aitrpc_cli.h>
 #include "rc.h"  #include "rc.h"
   
   
Line 21  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 58  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);
Line 159  int main(int argc, char **argv) Line 161  int main(int argc, char **argv)
   
         valz = ait_allocVars(1);          valz = ait_allocVars(1);
         v = ait_getVars(&valz, 0);          v = ait_getVars(&valz, 0);
        AIT_SET_I32(v, (cli->cli_id == SOCK_STREAM || cli->cli_id == SOCK_EXT) ? 5000000 : 5000);        printf("cli_id=%d\n", cli->cli_id);
         AIT_SET_I32(v, (cli->cli_id == SOCK_STREAM || cli->cli_id == SOCK_EXT) ? 50000 : 5000);
         if (rpc_cli_execCall(cli, RPC_REPLY, RC_big, valz, &arr) < 0) {          if (rpc_cli_execCall(cli, RPC_REPLY, RC_big, valz, &arr) < 0) {
                 printf("error:: \"big\" errno=%d %s\n", rpc_GetErrno(), rpc_GetError());                  printf("error:: \"big\" errno=%d %s\n", rpc_GetErrno(), rpc_GetError());
         } else          } else

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


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