]> git.scripts.mit.edu Git - git.git/blob - connect.h
read-tree: add tests for confusing paths like ".." and ".git"
[git.git] / connect.h
1 #ifndef CONNECT_H
2 #define CONNECT_H
3
4 #define CONNECT_VERBOSE       (1u << 0)
5 extern struct child_process *git_connect(int fd[2], const char *url, const char *prog, int flags);
6 extern int finish_connect(struct child_process *conn);
7 extern int git_connection_is_socket(struct child_process *conn);
8 extern int server_supports(const char *feature);
9 extern int parse_feature_request(const char *features, const char *feature);
10 extern const char *server_feature_value(const char *feature, int *len_ret);
11
12 #endif