| 210 | } |
| 211 | |
| 212 | txBoolean fxIsReadable(txMachine* the) |
| 213 | { |
| 214 | int count; |
| 215 | return the->connection && (ioctl(CFSocketGetNative(the->connection), FIONREAD, &count) == 0) && (count > 0); |
| 216 | } |
| 217 | |
| 218 | void fxReceive(txMachine* the) |
| 219 | { |
no outgoing calls
no test coverage detected