They might care because they want to do a half-duplex close. With pipes, that means simply closing the output descriptor; with a socket, you must actually call shutdown. Instead of exposing the magic no_fork child_process struct, let's encapsulate the test in a function. Signed-off-by: Jeff King <peff@xxxxxxxx> --- An more object-oriented refactoring would be something like: struct git_connection { struct child_process child; int in; int out; }; void git_connection_read_fd(struct git_connection *c) { return c->in; } void git_connect_write_fd(struct git_connect *c) { return c->child.pid ? c->out : c->in; } void git_connection_half_duplex_close(struct git_connection *c) { if (!c->child.pid) shutdown(c->in, SHUT_WR); else close(c->out); } but the idea that a git connection is defined by two file descriptors runs throughout the code (in fact, we don't even explicitly do the half-duplex close in the pipe case; we hand the descriptor off to the pack-objects run-command, which takes ownership). So trying to be fancy and abstracted is not worth it in this case. cache.h | 1 + connect.c | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletions(-) diff --git a/cache.h b/cache.h index bf468e5..724aad4 100644 --- a/cache.h +++ b/cache.h @@ -865,6 +865,7 @@ extern struct ref *find_ref_by_name(const struct ref *list, const char *name); #define CONNECT_VERBOSE (1u << 0) extern struct child_process *git_connect(int fd[2], const char *url, const char *prog, int flags); extern int finish_connect(struct child_process *conn); +extern int git_connection_is_socket(struct child_process *conn); extern int path_match(const char *path, int nr, char **match); struct extra_have_objects { int nr, alloc; diff --git a/connect.c b/connect.c index 86ad150..20a008d 100644 --- a/connect.c +++ b/connect.c @@ -634,10 +634,15 @@ struct child_process *git_connect(int fd[2], const char *url_orig, return conn; } +int git_connection_is_socket(struct child_process *conn) +{ + return conn == &no_fork; +} + int finish_connect(struct child_process *conn) { int code; - if (!conn || conn == &no_fork) + if (!conn || git_connection_is_socket(conn)) return 0; code = finish_command(conn); -- 1.7.5.1.13.g0ca09.dirty -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html