|
|
| version 1.9.2.2, 2012/05/14 15:22:22 | version 1.9.2.3, 2012/05/14 15:35:58 |
|---|---|
| Line 803 rpc_srv_endServer(rpc_srv_t ** __restrict psrv) | Line 803 rpc_srv_endServer(rpc_srv_t ** __restrict psrv) |
| rpc_func_t *f; | rpc_func_t *f; |
| if (!psrv || !*psrv) { | if (!psrv || !*psrv) { |
| rpc_SetErr(EINVAL, "Error:: Can`t destroy server because parameter is null!\n"); | rpc_SetErr(EINVAL, "Can`t destroy server because parameter is null!"); |
| return; | return; |
| } | } |
| Line 853 rpc_srv_loopServer(rpc_srv_t * __restrict srv) | Line 853 rpc_srv_loopServer(rpc_srv_t * __restrict srv) |
| struct pollfd pfd; | struct pollfd pfd; |
| if (!srv) { | if (!srv) { |
| rpc_SetErr(EINVAL, "Error:: Invalid parameter can`t start RPC server ...\n"); | rpc_SetErr(EINVAL, "Invalid parameter can`t start RPC server"); |
| return -1; | return -1; |
| } | } |