| 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); |
| 340 | } |
| 341 | |
| 342 | static int connSocketGetType(connection *conn) { |
| 343 | (void) conn; |
nothing calls this directly
no test coverage detected