Diff for /libaitrpc/example/tcli.c between versions 1.17 and 1.21

version 1.17, 2013/11/11 22:48:53 version 1.21, 2020/06/25 19:11:00
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 17  int main(int argc, char **argv) Line 19  int main(int argc, char **argv)
 //      printf("MM model=%d\n", elwix_mm_inuse());  //      printf("MM model=%d\n", elwix_mm_inuse());
 //      getchar();  //      getchar();
   
        if (argc > 1)        if (argc > 1) {
                cli = rpc_cli_openClient(2, 1024 * 10, "127.0.0.1", 11111, SOCK_DGRAM);                if (argc > 2)
        else                        cli = rpc_cli_openClient(2, 1024 * 10, "127.0.0.1", 0, SOCK_RAW);
                cli = rpc_cli_openClient(2, 1024 * 10, "93.123.104.1", 11111, 0);                else
//                cli = rpc_cli_openClient(2, 1024 * 10, "127.0.0.1", 11111, 0);                        cli = rpc_cli_openClient(2, 1024 * 10, "127.0.0.1", 11111, 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);
         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 55  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 154  int main(int argc, char **argv) Line 159  int main(int argc, char **argv)
         }          }
         printf("return=%d aaa arr=%p\n", arr ? array_Size(arr) : 42424242, arr);          printf("return=%d aaa arr=%p\n", arr ? array_Size(arr) : 42424242, arr);
   
        if (rpc_cli_execCall(cli, RPC_REPLY, RC_big, NULL, &arr) < 0) {        valz = ait_allocVars(1);
         v = ait_getVars(&valz, 0);
         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) {
                 printf("error:: \"big\" errno=%d %s\n", rpc_GetErrno(), rpc_GetError());                  printf("error:: \"big\" errno=%d %s\n", rpc_GetErrno(), rpc_GetError());
         } else          } else
                 printf("return=%d big arr=%p\n", arr ? array_Size(arr) : 42424242, arr);                  printf("return=%d big arr=%p\n", arr ? array_Size(arr) : 42424242, arr);
         ait_freeVars(&arr);          ait_freeVars(&arr);
           ait_freeVars(&valz);
   
   
         valz = ait_allocVars(1);          valz = ait_allocVars(1);

Removed from v.1.17  
changed lines
  Added in v.1.21


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