--- libaitrpc/example/tsrv.c 2011/08/31 17:11:57 1.3.2.3 +++ libaitrpc/example/tsrv.c 2011/09/01 15:29:39 1.3.2.7 @@ -40,6 +40,8 @@ int BBB(rpc_func_t *f, int in, array_t *iv) printf("%s(%d): Piuk! %s %d %s %X\n", __func__, __LINE__, 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_BLOB(io_array(iv, 2, ait_val_t*))); + printf("%s(%d): Piuk! %s %d %s %X\n", __func__, __LINE__, f->func_name, + AIT_GET_I32(io_array(iv, 0, ait_val_t*)), AIT_GET_STR(io_array(iv, 1, ait_val_t*))); // input blob object if (!(b = rpc_srv_getBLOB(f->func_parent, AIT_GET_BLOB(io_array(iv, 2, ait_val_t*))))) @@ -52,7 +54,6 @@ int BBB(rpc_func_t *f, int in, array_t *iv) rpc_srv_unregisterBLOB(f->func_parent, AIT_GET_BLOB(io_array(iv, 2, ait_val_t*))); - rpc_srv_allocVars(f, 4); rpc_srv_getVars(f, &arr); v = io_array(arr, 0, ait_val_t*); AIT_SET_BUF(v, "00!oo", 6); @@ -65,8 +66,10 @@ int BBB(rpc_func_t *f, int in, array_t *iv) b = rpc_srv_registerBLOB(f->func_parent, 128); if (!b) return -1; - else - AIT_SET_BLOB2(io_array(arr, 3, ait_val_t*), b); + else { + v = io_array(arr, 3, ait_val_t*); + AIT_SET_BLOB2(v, b); + } if (rpc_srv_blobMap(f->func_parent, b) == -1) { rpc_srv_blobFree(f->func_parent, b); @@ -100,11 +103,6 @@ int main() return 1; } - /* dump register functions - for (f = srv->srv_funcs; f; f = f->func_next) - printf("func::name=%s args=%d\n", f->func_name, f->func_args); - */ - if (!fork()) { setsid(); @@ -113,9 +111,18 @@ int main() rpc_srv_registerCall(srv, NULL, "dummy", 1); rpc_srv_registerCall(srv, NULL, "xYz", 2); + /* dump register functions */ + 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", f->func_name, io_arraySize(f->func_vars)); + pthread_create(&tid[1], NULL, (void*(*)(void*)) rpc_srv_execBLOBServer, srv); + pthread_detach(tid[1]); rpc_srv_execServer(srv); }