| 405 | } |
| 406 | |
| 407 | int connKeepAlive(connection *conn, int interval) { |
| 408 | if (conn->fd == -1) return C_ERR; |
| 409 | return anetKeepAlive(NULL, conn->fd, interval); |
| 410 | } |
| 411 | |
| 412 | int connSendTimeout(connection *conn, long long ms) { |
| 413 | return anetSendTimeout(NULL, conn->fd, ms); |
no test coverage detected