]> git.ipfire.org Git - thirdparty/git.git/blame - connect.h
Documentation/RelNotes/2.45.0.txt: fix typo
[thirdparty/git.git] / connect.h
CommitLineData
47a59185
JH
1#ifndef CONNECT_H
2#define CONNECT_H
3
ca5e3968 4#include "protocol.h"
2e75c8ed 5
47a59185 6#define CONNECT_VERBOSE (1u << 0)
5610b7c0 7#define CONNECT_DIAG_URL (1u << 1)
c915f11e
EW
8#define CONNECT_IPV4 (1u << 2)
9#define CONNECT_IPV6 (1u << 3)
eaa0fd65 10struct child_process *git_connect(int fd[2], const char *url, const char *name, const char *prog, int flags);
55454427
DL
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);
7ce4c8f7 15const char *server_feature_value(const char *feature, size_t *len_ret);
55454427 16int url_is_local_not_ssh(const char *url);
47a59185 17
ad6ac124 18struct packet_reader;
55454427 19enum protocol_version discover_version(struct packet_reader *reader);
ad6ac124 20
122037c2 21int server_supports_hash(const char *desired, int *feature_supported);
7ce4c8f7 22const char *parse_feature_value(const char *feature_list, const char *feature, size_t *lenp, size_t *offset);
a31cfe32
JK
23int server_supports_v2(const char *c);
24void ensure_server_supports_v2(const char *c);
1349ffed 25int server_feature_v2(const char *c, const char **v);
55454427 26int server_supports_feature(const char *c, const char *feature,
ad6dad09 27 int die_on_error);
e52449b6 28
b0df0c16
DL
29void check_stateless_delimiter(int stateless_rpc,
30 struct packet_reader *reader,
31 const char *error);
32
47a59185 33#endif