| 415 | } |
| 416 | |
| 417 | int connFormatFdAddr(connection *conn, char *buf, size_t buf_len, int fd_to_str_type) { |
| 418 | return anetFormatFdAddr(conn ? conn->fd : -1, buf, buf_len, fd_to_str_type); |
| 419 | } |
| 420 | |
| 421 | int connBlock(connection *conn) { |
| 422 | if (conn->fd == -1) return C_ERR; |
no test coverage detected