Diff for /libaitrpc/example/tcli.c between versions 1.6.2.3 and 1.6.2.4

version 1.6.2.3, 2012/03/28 11:36:42 version 1.6.2.4, 2012/03/28 11:52:44
Line 17  int main() Line 17  int main()
 //      cli = rpc_cli_openClient(100, 2, AF_LOCAL, "0.0.0.0", 11111);  //      cli = rpc_cli_openClient(100, 2, AF_LOCAL, "0.0.0.0", 11111);
         if (!cli) {          if (!cli) {
                 printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError());                  printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError());
                   free(blob43);
                 return 1;                  return 1;
         }          }
   
         cli2 = rpc_cli_openBLOBClient(cli, 0);          cli2 = rpc_cli_openBLOBClient(cli, 0);
         if (!cli2) {          if (!cli2) {
                 printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError());                  printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError());
                   rpc_cli_closeClient(cli);
                   free(blob43);
                 return 1;                  return 1;
         }          }
   
Line 38  int main() Line 41  int main()
         AIT_NEW_BLOB(v, 512);          AIT_NEW_BLOB(v, 512);
         if (rpc_cli_sendBLOB(cli2, v, blob43) == -1) {          if (rpc_cli_sendBLOB(cli2, v, blob43) == -1) {
                 printf("!!!!! blob error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError());                  printf("!!!!! blob error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError());
                   rpc_cli_closeBLOBClient(cli2);
                   rpc_cli_closeClient(cli);
                   free(blob43);
                 return 2;                  return 2;
         } else          } else
                 printf("Get BLOB = %x\n", AIT_GET_BLOB(v));                  printf("Get BLOB = %x\n", AIT_GET_BLOB(v));
Line 52  int main() Line 58  int main()
 //      for (i = 0; i < 1000000; i++)  //      for (i = 0; i < 1000000; i++)
                 if ((ret = rpc_cli_execCall(cli, RPC_REPLY, NULL, "BBB", valz, &arr)) < 0) {                  if ((ret = rpc_cli_execCall(cli, RPC_REPLY, NULL, "BBB", valz, &arr)) < 0) {
                         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_closeClient(cli);
                           free(blob43);
                         return 2;                          return 2;
                 } else {                  } else {
                         printf("ret=%d\n", ret);                          printf("ret=%d\n", ret);

Removed from v.1.6.2.3  
changed lines
  Added in v.1.6.2.4


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