Diff for /libaitrpc/inc/aitrpc.h between versions 1.15.2.5 and 1.17.2.1

version 1.15.2.5, 2013/07/16 12:35:25 version 1.17.2.1, 2013/08/20 23:25:18
Line 85  SUCH DAMAGE. Line 85  SUCH DAMAGE.
 #define CALL_BLOBCLIENTS        65528  #define CALL_BLOBCLIENTS        65528
 #define CALL_BLOBVARS           65527  #define CALL_BLOBVARS           65527
   
   /* RPC signals */
   #define SIGFBLOB                54
   
 /* RPC types */  /* RPC types */
   
Line 196  typedef struct { Line 198  typedef struct {
         int             cli_id;         /* slot id */          int             cli_id;         /* slot id */
         int             cli_sock;       /* socket fd */          int             cli_sock;       /* socket fd */
         sockaddr_t      cli_sa;         /* host address */          sockaddr_t      cli_sa;         /* host address */
        ait_val_t        cli_buf;        /* network buffer */        array_t         *cli_buf;        /* network buffer(s) */
   
         array_t         *cli_vars;      /* function return variables */          array_t         *cli_vars;      /* function return variables */
   
Line 254  typedef int (*rpc_callback_t)(rpc_cli_t *, struct tagR Line 256  typedef int (*rpc_callback_t)(rpc_cli_t *, struct tagR
 int rpc_GetErrno();  int rpc_GetErrno();
 // rpc_GetError() Get error text of last operation  // rpc_GetError() Get error text of last operation
 const char *rpc_GetError();  const char *rpc_GetError();
   // rpc_SetErr() Set error to variables for internal use!!!
   void rpc_SetErr(int eno, char *estr, ...);
   
   
   
 /*  /*

Removed from v.1.15.2.5  
changed lines
  Added in v.1.17.2.1


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