| 257 | } |
| 258 | |
| 259 | void fxSend(txMachine* the, txBoolean more) |
| 260 | { |
| 261 | if (the->connection != INVALID_SOCKET) { |
| 262 | again: |
| 263 | int count = send(the->connection, the->echoBuffer, the->echoOffset, 0); |
| 264 | if (count < 0) { |
| 265 | if (WSAEWOULDBLOCK == WSAGetLastError()) { |
| 266 | WaitMessage(); |
| 267 | goto again; |
| 268 | } |
| 269 | fxDisconnect(the); |
| 270 | } |
| 271 | } |
| 272 | } |
| 273 | #endif |
nothing calls this directly
no test coverage detected