| 931 | static struct child_process no_fork = CHILD_PROCESS_INIT; |
| 932 | |
| 933 | int git_connection_is_socket(struct child_process *conn) |
| 934 | { |
| 935 | return conn == &no_fork; |
| 936 | } |
| 937 | |
| 938 | static struct child_process *git_tcp_connect(int fd[2], char *host, int flags) |
| 939 | { |
no outgoing calls
no test coverage detected