| 936 | } |
| 937 | |
| 938 | static 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 | |
| 949 | static char *git_proxy_command; |
no test coverage detected