|
|
| version 1.18, 2013/08/22 15:31:09 | version 1.19, 2013/08/23 13:53:15 |
|---|---|
| Line 261 void rpc_SetErr(int eno, char *estr, ...); | Line 261 void rpc_SetErr(int eno, char *estr, ...); |
| /* | /* |
| * rpc_Read() - RPC read operation | |
| * | |
| * @sock = socket | |
| * @type = type of socket | |
| * @flags = receive flags | |
| * @sa = check client address, if you use udp protocol | |
| * @buf = buffer | |
| * @blen = buffer length | |
| * return: -1 error or >-1 readed bytes into buffer | |
| */ | |
| ssize_t rpc_Read(int sock, int type, int flags, sockaddr_t * __restrict sa, | |
| unsigned char * __restrict buf, size_t blen); | |
| /* | |
| * rpc_Write() - RPC write operation | |
| * | |
| * @sock = socket | |
| * @type = type of socket | |
| * @flags = send flags | |
| * @sa = send to client address, if you use udp protocol | |
| * @buf = buffer | |
| * @blen = buffer length | |
| * return: -1 error or >-1 written bytes into buffer | |
| */ | |
| ssize_t rpc_Write(int sock, int type, int flags, sockaddr_t * __restrict sa, | |
| unsigned char * __restrict buf, size_t blen); | |
| /* | |
| * rpc_chkPktSession() - Check RPC session | * rpc_chkPktSession() - Check RPC session |
| * | * |
| * @p = packet session | * @p = packet session |