| 576 | } |
| 577 | |
| 578 | int _go_git_transport_smart( |
| 579 | git_transport **out, |
| 580 | git_remote *owner, |
| 581 | int stateless, |
| 582 | _go_managed_smart_subtransport *subtransport_payload) |
| 583 | { |
| 584 | git_smart_subtransport_definition definition = { |
| 585 | smart_subtransport_callback, |
| 586 | stateless, |
| 587 | subtransport_payload, |
| 588 | }; |
| 589 | |
| 590 | return git_transport_smart(out, owner, &definition); |
| 591 | } |
| 592 | |
| 593 | static int smart_subtransport_stream_read_callback( |
| 594 | git_smart_subtransport_stream *stream, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…