| 222 | } |
| 223 | |
| 224 | txBoolean fxIsReadable(txMachine* the) |
| 225 | { |
| 226 | if (the->connection != INVALID_SOCKET) { |
| 227 | int count = recv(the->connection, the->debugBuffer, sizeof(the->debugBuffer) - 1, 0); |
| 228 | if (count > 0) { |
| 229 | the->debugOffset = count; |
| 230 | return 1; |
| 231 | } |
| 232 | } |
| 233 | return 0; |
| 234 | } |
| 235 | |
| 236 | void fxReceive(txMachine* the) |
| 237 | { |
no outgoing calls
no test coverage detected