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

Function git_tcp_connect

connect.c:938–946  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

936}
937
938static struct child_process *git_tcp_connect(int fd[2], char *host, int flags)
939{
940 int sockfd = git_tcp_connect_sock(host, flags);
941
942 fd[0] = sockfd;
943 fd[1] = dup(sockfd);
944
945 return &no_fork;
946}
947
948
949static char *git_proxy_command;

Callers 1

git_connect_gitFunction · 0.85

Calls 1

git_tcp_connect_sockFunction · 0.85

Tested by

no test coverage detected