MCPcopy Create free account
hub / github.com/libgit2/git2go / _go_git_transport_smart

Function _go_git_transport_smart

wrapper.c:578–591  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

576}
577
578int _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
593static int smart_subtransport_stream_read_callback(
594 git_smart_subtransport_stream *stream,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…