| 424 | } |
| 425 | |
| 426 | int connNonBlock(connection *conn) { |
| 427 | if (conn->fd == -1) return C_ERR; |
| 428 | return anetNonBlock(NULL, conn->fd); |
| 429 | } |
| 430 | |
| 431 | int connEnableTcpNoDelay(connection *conn) { |
| 432 | if (conn->fd == -1) return C_ERR; |
no test coverage detected