MCPcopy Create free account
hub / github.com/git/git / finish_connect

Function finish_connect

connect.c:1502–1511  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1500}
1501
1502int finish_connect(struct child_process *conn)
1503{
1504 int code;
1505 if (!conn || git_connection_is_socket(conn))
1506 return 0;
1507
1508 code = finish_command(conn);
1509 free(conn);
1510 return code;
1511}

Callers 5

fetch_refs_via_packFunction · 0.85
git_transport_pushFunction · 0.85
disconnect_gitFunction · 0.85
cmd_fetch_packFunction · 0.85
cmd_send_packFunction · 0.85

Calls 2

git_connection_is_socketFunction · 0.85
finish_commandFunction · 0.85

Tested by

no test coverage detected