| 365 | } |
| 366 | |
| 367 | static ssize_t connSocketSyncRead(connection *conn, char *ptr, ssize_t size, long long timeout) { |
| 368 | return syncRead(conn->fd, ptr, size, timeout); |
| 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); |
nothing calls this directly
no test coverage detected