| 164 | } |
| 165 | |
| 166 | bool ipc_client::active(void) const |
| 167 | { |
| 168 | if (closing_) { |
| 169 | return false; |
| 170 | } else if (async_stream_ != NULL || sync_stream_ != NULL) { |
| 171 | return true; |
| 172 | } else { |
| 173 | return false; |
| 174 | } |
| 175 | } |
| 176 | |
| 177 | aio_socket_stream* ipc_client::get_async_stream(void) const |
| 178 | { |
no outgoing calls
no test coverage detected