| 332 | } |
| 333 | |
| 334 | static ssize_t connSocketSyncRead(connection *conn, char *ptr, ssize_t size, long long timeout) { |
| 335 | return syncRead(conn->fd, ptr, size, timeout); |
| 336 | } |
| 337 | |
| 338 | static ssize_t connSocketSyncReadLine(connection *conn, char *ptr, ssize_t size, long long timeout) { |
| 339 | return syncReadLine(conn->fd, ptr, size, timeout); |
nothing calls this directly
no test coverage detected