| 233 | } |
| 234 | |
| 235 | void fxReadNetwork(txSerialMachine machine, DWORD size) |
| 236 | { |
| 237 | while (size > 0) { |
| 238 | fxReadNetworkBuffer(machine, machine->networkBuffer, (int)size); |
| 239 | WSAResetEvent(machine->networkOverlapped.hEvent); |
| 240 | size = fxReadNetworkAux(machine); |
| 241 | } |
| 242 | } |
| 243 | |
| 244 | DWORD fxReadNetworkAux(txSerialMachine machine) |
| 245 | { |
no test coverage detected