completion: stop showing 'save' for stash by default
[git.git] / connect.h
blob01f14cdf3fa4e6b6c8cd3b4c9ec3c3d55e7fc04f
1 #ifndef CONNECT_H
2 #define CONNECT_H
4 #define CONNECT_VERBOSE (1u << 0)
5 #define CONNECT_DIAG_URL (1u << 1)
6 #define CONNECT_IPV4 (1u << 2)
7 #define CONNECT_IPV6 (1u << 3)
8 extern struct child_process *git_connect(int fd[2], const char *url, const char *prog, int flags);
9 extern int finish_connect(struct child_process *conn);
10 extern int git_connection_is_socket(struct child_process *conn);
11 extern int server_supports(const char *feature);
12 extern int parse_feature_request(const char *features, const char *feature);
13 extern const char *server_feature_value(const char *feature, int *len_ret);
14 extern int url_is_local_not_ssh(const char *url);
16 #endif