| 194 | } |
| 195 | |
| 196 | static inline ssize_t connSyncWrite(connection *conn, const char *ptr, ssize_t size, long long timeout) { |
| 197 | return conn->type->sync_write(conn, ptr, size, timeout); |
| 198 | } |
| 199 | |
| 200 | static inline ssize_t connSyncRead(connection *conn, char *ptr, ssize_t size, long long timeout) { |
| 201 | return conn->type->sync_read(conn, ptr, size, timeout); |
no outgoing calls
no test coverage detected