| 224 | } |
| 225 | |
| 226 | txBoolean fxIsReadable(txMachine* the) |
| 227 | { |
| 228 | if (the->socket) { |
| 229 | gssize count = g_socket_receive(the->socket, the->debugBuffer, sizeof(the->debugBuffer) - 1, NULL, NULL); |
| 230 | if (count > 0) { |
| 231 | the->debugOffset = count; |
| 232 | return 1; |
| 233 | } |
| 234 | } |
| 235 | return 0; |
| 236 | } |
| 237 | |
| 238 | void fxReceive(txMachine* the) |
| 239 | { |
no outgoing calls
no test coverage detected