| 390 | } |
| 391 | |
| 392 | int connNonBlock(connection *conn) { |
| 393 | if (conn->fd == -1) return C_ERR; |
| 394 | return anetNonBlock(NULL, conn->fd); |
| 395 | } |
| 396 | |
| 397 | int connEnableTcpNoDelay(connection *conn) { |
| 398 | if (conn->fd == -1) return C_ERR; |
no test coverage detected