Diff for /libaitrpc/example/tsrv.c between versions 1.17.2.2 and 1.17.2.3

version 1.17.2.2, 2015/06/29 22:29:25 version 1.17.2.3, 2015/07/02 17:52:51
Line 1 Line 1
 #include <stdio.h>  #include <stdio.h>
   #include <string.h>
   #include <errno.h>
 #include <pthread.h>  #include <pthread.h>
 #include <aitrpc.h>  #include <aitrpc.h>
 #include "rc.h"  #include "rc.h"
Line 107  int big(rpc_cli_t *cli, struct tagRPCCall *rpc, array_ Line 109  int big(rpc_cli_t *cli, struct tagRPCCall *rpc, array_
   
         printf("Ok lets fun... %d\n", array_Size(iv));          printf("Ok lets fun... %d\n", array_Size(iv));
   
        mpool_xdump(">>> %s(%d) ", __func__, __LINE__);        mpool_dump(NULL, ">>> %s(%d) ", __func__, __LINE__);
         v = ait_getVars(&RPC_RETVARS(cli), 0);          v = ait_getVars(&RPC_RETVARS(cli), 0);
         AIT_SET_BUFSIZ(v, '*', AIT_GET_I32(array(iv, 0, ait_val_t*)));          AIT_SET_BUFSIZ(v, '*', AIT_GET_I32(array(iv, 0, ait_val_t*)));
        mpool_xdump(">>> %s(%d) ", __func__, __LINE__);        mpool_dump(NULL, ">>> %s(%d) ", __func__, __LINE__);
         return 0;          return 0;
 }  }
   
Line 148  int main(int argc, char **argv) Line 150  int main(int argc, char **argv)
         rpc_register_srvServices(srv);          rpc_register_srvServices(srv);
         rpc_register_blobServices(srv);          rpc_register_blobServices(srv);
   
        mpool_xdump(NULL);        mpool_dump(NULL, NULL);
   
         rpc_srv_execBLOBServer(srv);          rpc_srv_execBLOBServer(srv);
         rpc_srv_loopServer(srv);          rpc_srv_loopServer(srv);
   
         rpc_srv_endBLOBServer(srv);          rpc_srv_endBLOBServer(srv);
         rpc_srv_endServer(&srv);          rpc_srv_endServer(&srv);
        mpool_xdump(NULL);        mpool_dump(NULL, NULL);
         return 0;          return 0;
 }  }

Removed from v.1.17.2.2  
changed lines
  Added in v.1.17.2.3


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