t5570: drop racy test
[git.git] / connect.h
blob32aff60979512b7f1382482435a26c51882b9f16
1 #ifndef CONNECT_H
2 #define CONNECT_H
4 #include "protocol.h"
6 #define CONNECT_VERBOSE (1u << 0)
7 #define CONNECT_DIAG_URL (1u << 1)
8 #define CONNECT_IPV4 (1u << 2)
9 #define CONNECT_IPV6 (1u << 3)
10 extern struct child_process *git_connect(int fd[2], const char *url, const char *prog, int flags);
11 extern int finish_connect(struct child_process *conn);
12 extern int git_connection_is_socket(struct child_process *conn);
13 extern int server_supports(const char *feature);
14 extern int parse_feature_request(const char *features, const char *feature);
15 extern const char *server_feature_value(const char *feature, int *len_ret);
16 extern int url_is_local_not_ssh(const char *url);
18 struct packet_reader;
19 extern enum protocol_version discover_version(struct packet_reader *reader);
21 extern int server_supports_v2(const char *c, int die_on_error);
22 extern int server_supports_feature(const char *c, const char *feature,
23 int die_on_error);
25 #endif