| 607 | } |
| 608 | |
| 609 | static int smart_subtransport_stream_write_callback( |
| 610 | git_smart_subtransport_stream *stream, |
| 611 | const char *buffer, |
| 612 | size_t len) |
| 613 | { |
| 614 | char *error_message = NULL; |
| 615 | const int ret = smartSubtransportStreamWriteCallback( |
| 616 | &error_message, |
| 617 | stream, |
| 618 | (char *)buffer, |
| 619 | len); |
| 620 | return set_callback_error(error_message, ret); |
| 621 | } |
| 622 | |
| 623 | void _go_git_setup_smart_subtransport_stream(_go_managed_smart_subtransport_stream *stream) |
| 624 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…