| 591 | } |
| 592 | |
| 593 | static int smart_subtransport_stream_read_callback( |
| 594 | git_smart_subtransport_stream *stream, |
| 595 | char *buffer, |
| 596 | size_t buf_size, |
| 597 | size_t *bytes_read) |
| 598 | { |
| 599 | char *error_message = NULL; |
| 600 | const int ret = smartSubtransportStreamReadCallback( |
| 601 | &error_message, |
| 602 | stream, |
| 603 | buffer, |
| 604 | buf_size, |
| 605 | bytes_read); |
| 606 | return set_callback_error(error_message, ret); |
| 607 | } |
| 608 | |
| 609 | static int smart_subtransport_stream_write_callback( |
| 610 | git_smart_subtransport_stream *stream, |
nothing calls this directly
no test coverage detected
searching dependent graphs…