| 369 | } |
| 370 | |
| 371 | static ssize_t connSocketSyncReadLine(connection *conn, char *ptr, ssize_t size, long long timeout) { |
| 372 | return syncReadLine(conn->fd, ptr, size, timeout); |
| 373 | } |
| 374 | |
| 375 | static int connSocketGetType(struct connection *conn) { |
| 376 | (void) conn; |
nothing calls this directly
no test coverage detected