| 381 | } |
| 382 | |
| 383 | int connFormatFdAddr(connection *conn, char *buf, size_t buf_len, int fd_to_str_type) { |
| 384 | return anetFormatFdAddr(conn ? conn->fd : -1, buf, buf_len, fd_to_str_type); |
| 385 | } |
| 386 | |
| 387 | int connBlock(connection *conn) { |
| 388 | if (conn->fd == -1) return C_ERR; |
no test coverage detected