version 1.13, 2013/08/22 15:31:09
|
version 1.16.20.1, 2015/01/27 23:53:32
|
Line 29 int aaa(rpc_cli_t *cli, struct tagRPCCall *rpc, array_
|
Line 29 int aaa(rpc_cli_t *cli, struct tagRPCCall *rpc, array_
|
|
|
rpc_srv_blobUnmap(b); |
rpc_srv_blobUnmap(b); |
*/ |
*/ |
|
|
|
RPC_SET_ERRNO(rpc, EAGAIN); |
return 0; |
return 0; |
} |
} |
|
|
Line 97 int xYz(rpc_cli_t *cli, struct tagRPCCall *rpc, array_
|
Line 99 int xYz(rpc_cli_t *cli, struct tagRPCCall *rpc, array_
|
return 0; |
return 0; |
} |
} |
|
|
|
int big(rpc_cli_t *cli, struct tagRPCCall *rpc, array_t *iv) |
|
{ |
|
RPC_CALLBACK_CHECK_INPUT(cli); |
|
ait_val_t *v; |
|
|
|
printf("Ok lets fun... %d\n", array_Size(iv)); |
|
|
|
v = ait_getVars(&RPC_RETVARS(cli), 0); |
|
AIT_SET_BUFSIZ(v, '*', 5000000); |
|
return 0; |
|
} |
|
|
int main(int argc, char **argv) |
int main(int argc, char **argv) |
{ |
{ |
rpc_func_t *f; |
rpc_func_t *f; |
int ret; |
int ret; |
|
|
if (argc > 1) | if (argc > 1) { |
srv = rpc_srv_initServer(2, 3, 1024 * 10, "0.0.0.0", 11111, SOCK_DGRAM); | if (argc > 2) |
else | srv = rpc_srv_initServer(2, 3, 1024 * 10, "0.0.0.0", 0, SOCK_RAW); |
| else |
| srv = rpc_srv_initServer(2, 3, 1024 * 10, "0.0.0.0", 11111, SOCK_DGRAM); |
| } else |
srv = rpc_srv_initServer(2, 2, 1024 * 10, "0.0.0.0", 11111, 0); |
srv = rpc_srv_initServer(2, 2, 1024 * 10, "0.0.0.0", 11111, 0); |
if (!srv) { |
if (!srv) { |
printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
printf("error:: errno=%d %s\n", rpc_GetErrno(), rpc_GetError()); |
Line 121 int main(int argc, char **argv)
|
Line 138 int main(int argc, char **argv)
|
rpc_srv_registerCall(srv, 3, NULL); |
rpc_srv_registerCall(srv, 3, NULL); |
rpc_srv_registerCall(srv, RC_xYz, xYz); |
rpc_srv_registerCall(srv, RC_xYz, xYz); |
rpc_srv_registerCall(srv, RC_xxx, xxx); |
rpc_srv_registerCall(srv, RC_xxx, xxx); |
|
rpc_srv_registerCall(srv, RC_big, big); |
|
|
rpc_srv_unregisterCall(srv, 4); |
rpc_srv_unregisterCall(srv, 4); |
|
|