| 361 | */ |
| 362 | |
| 363 | static ssize_t connSocketSyncWrite(connection *conn, const char *ptr, ssize_t size, long long timeout) { |
| 364 | return syncWrite(conn->fd, ptr, size, timeout); |
| 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); |
nothing calls this directly
no test coverage detected