Diff for /libaitrpc/example/tsrv.c between versions 1.4 and 1.6

version 1.4, 2011/09/07 07:24:21 version 1.6, 2012/03/15 01:55:32
Line 10  int aaa(rpc_func_t *f, int in, array_t *iv) Line 10  int aaa(rpc_func_t *f, int in, array_t *iv)
   
         RPC_CALLBACK_CHECK_INPUT(f);          RPC_CALLBACK_CHECK_INPUT(f);
   
        printf("%s(%d): Piuk! %s\n", __func__, __LINE__, f->func_name);        printf("%s(%d): Piuk! %s\n", __func__, __LINE__, AIT_GET_STR(&f->func_name));
   
         /*          /*
         b = rpc_srv_registerBLOB(f->func_parent, BUFSIZ);          b = rpc_srv_registerBLOB(f->func_parent, BUFSIZ);
Line 37  int BBB(rpc_func_t *f, int in, array_t *iv) Line 37  int BBB(rpc_func_t *f, int in, array_t *iv)
   
         RPC_CALLBACK_CHECK_INPUT(f);          RPC_CALLBACK_CHECK_INPUT(f);
   
        printf("%s(%d): Piuk! %s  %d %s %X\n", __func__, __LINE__, f->func_name        printf("%s(%d): Piuk! %s  %d %s %X\n", __func__, __LINE__, AIT_GET_STR(&f->func_name), 
                         AIT_GET_I32(io_array(iv, 0, ait_val_t*)), AIT_GET_STR(io_array(iv, 1, ait_val_t*)),                           AIT_GET_I32(io_array(iv, 0, ait_val_t*)), AIT_GET_STR(io_array(iv, 1, ait_val_t*)), 
                         AIT_GET_BLOB(io_array(iv, 2, ait_val_t*)));                          AIT_GET_BLOB(io_array(iv, 2, ait_val_t*)));
        printf("%s(%d): Piuk! %s  %d %s %X\n", __func__, __LINE__, f->func_name        printf("%s(%d): Piuk! %s  %d %s %X\n", __func__, __LINE__, AIT_GET_STR(&f->func_name), 
                         AIT_GET_I32(io_array(iv, 0, ait_val_t*)), AIT_GET_STR(io_array(iv, 1, ait_val_t*)));                          AIT_GET_I32(io_array(iv, 0, ait_val_t*)), AIT_GET_STR(io_array(iv, 1, ait_val_t*)));
   
         // input blob object          // input blob object
Line 98  int main() Line 98  int main()
                 return 1;                  return 1;
         }          }
   
        if (!fork()) {        rpc_srv_registerCall(srv, NULL, "aaa", 0);
                setsid();        rpc_srv_registerCall(srv, NULL, "BBB", 4);
         rpc_srv_registerCall(srv, NULL, "dummy", 1);
         rpc_srv_registerCall(srv, NULL, "xYz", 2);
   
                rpc_srv_registerCall(srv, NULL, "aaa", 0);        /* dump register functions */
                rpc_srv_registerCall(srv, NULL, "BBB", 4);        /*
                rpc_srv_registerCall(srv, NULL, "dummy", 1);        for (f = srv->srv_funcs; f; f = f->func_next)
                rpc_srv_registerCall(srv, NULL, "xYz", 2);                printf("0.func::name=%s args=%d\n", AIT_GET_STR(&f->func_name), io_arraySize(f->func_vars));
                 */
   
                /* dump register functions */        rpc_srv_unregisterCall(srv, NULL, "dummy");
                /* 
                for (f = srv->srv_funcs; f; f = f->func_next) 
                        printf("0.func::name=%s args=%d\n", f->func_name, io_arraySize(f->func_vars)); 
                        */ 
   
                rpc_srv_unregisterCall(srv, NULL, "dummy");        /* dump register functions */
         /*
         for (f = srv->srv_funcs; f; f = f->func_next)
                 printf("1.func::name=%s args=%d\n", AIT_GET_STR(&f->func_name), io_arraySize(f->func_vars));
                 */
   
                /* dump register functions *///      if (!fork()) {
                /*/////////               setsid();
                for (f = srv->srv_funcs; f; f = f->func_next) 
                        printf("1.func::name=%s args=%d\n", f->func_name, io_arraySize(f->func_vars)); 
                        */ 
   
//                rpc_srv_loopServer(srv);                rpc_srv_loopServer(srv);
                rpc_srv_execServer(srv, &ret);////                rpc_srv_execServer(srv, &ret);
        }//      }
   
         rpc_srv_endBLOBServer(srv);          rpc_srv_endBLOBServer(srv);
        printf("OUT!!!\n");        rpc_srv_endServer(&srv);
//        rpc_srv_endServer(srv); 
   
         return 0;          return 0;
 }  }

Removed from v.1.4  
changed lines
  Added in v.1.6


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