--- libaitrpc/inc/aitrpc.h 2013/07/15 15:10:37 1.15.2.4 +++ libaitrpc/inc/aitrpc.h 2013/07/16 12:47:25 1.15.2.6 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ -* $Id: aitrpc.h,v 1.15.2.4 2013/07/15 15:10:37 misho Exp $ +* $Id: aitrpc.h,v 1.15.2.6 2013/07/16 12:47:25 misho Exp $ * ************************************************************************** The ELWIX and AITNET software is distributed under the following @@ -85,6 +85,8 @@ SUCH DAMAGE. #define CALL_BLOBCLIENTS 65528 #define CALL_BLOBVARS 65527 +/* RPC signals */ +#define SIGFBLOB 54 /* RPC types */ @@ -409,9 +411,10 @@ int rpc_srv_execCall(rpc_cli_t * __restrict cli, struc * * @srv = RPC Server instance * @len = BLOB length object + * @tout = BLOB live timeout in seconds * return: NULL error or !=NULL allocated BLOB object */ -rpc_blob_t *rpc_srv_blobCreate(rpc_srv_t * __restrict srv, int len); +rpc_blob_t *rpc_srv_blobCreate(rpc_srv_t * __restrict srv, int len, int tout); /* * rpc_srv_blobMap() - Map blob to memory region * @@ -442,11 +445,9 @@ int rpc_srv_blobFree(rpc_srv_t * __restrict srv, rpc_b * @srv = RPC Server instance * @len = BLOB length * @tout = BLOB live timeout in seconds - * @c = RPC Client * return: NULL error or new registered BLOB */ -rpc_blob_t *rpc_srv_registerBLOB(rpc_srv_t * __restrict srv, size_t len, - int tout, rpc_cli_t * __restrict c); +rpc_blob_t *rpc_srv_registerBLOB(rpc_srv_t * __restrict srv, size_t len, int tout); /* * rpc_srv_unregisterBLOB() - Unregister BLOB from server *