]> git.ipfire.org Git - thirdparty/git.git/blame_incremental - connect.h
Merge branch 'bc/sha-256-part-2'
[thirdparty/git.git] / connect.h
... / ...
CommitLineData
1#ifndef CONNECT_H
2#define CONNECT_H
3
4#include "protocol.h"
5
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)
10struct child_process *git_connect(int fd[2], const char *url, const char *prog, int flags);
11int finish_connect(struct child_process *conn);
12int git_connection_is_socket(struct child_process *conn);
13int server_supports(const char *feature);
14int parse_feature_request(const char *features, const char *feature);
15const char *server_feature_value(const char *feature, int *len_ret);
16int url_is_local_not_ssh(const char *url);
17
18struct packet_reader;
19enum protocol_version discover_version(struct packet_reader *reader);
20
21int server_supports_hash(const char *desired, int *feature_supported);
22const char *parse_feature_value(const char *feature_list, const char *feature, int *lenp, int *offset);
23int server_supports_v2(const char *c, int die_on_error);
24int server_feature_v2(const char *c, const char **v);
25int server_supports_feature(const char *c, const char *feature,
26 int die_on_error);
27
28void check_stateless_delimiter(int stateless_rpc,
29 struct packet_reader *reader,
30 const char *error);
31
32#endif