| 106 | } |
| 107 | |
| 108 | void HttpServerCommand::checkSocketRecvBuffer() |
| 109 | { |
| 110 | if (httpServer_->getSocketRecvBuffer()->bufferEmpty() && |
| 111 | socket_->getRecvBufferedLength() == 0) { |
| 112 | return; |
| 113 | } |
| 114 | |
| 115 | setStatus(Command::STATUS_ONESHOT_REALTIME); |
| 116 | e_->setNoWait(true); |
| 117 | } |
| 118 | |
| 119 | #ifdef ENABLE_WEBSOCKET |
| 120 |
nothing calls this directly
no test coverage detected