diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2005-10-28 04:48:54 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-10-28 22:57:00 -0700 |
commit | 211b5f9e62cc961acda59392fbf5a3efa8106c97 (patch) | |
tree | 34b786ce5431b5af896db98825eb1bb167fe1683 /cache.h | |
parent | f0243f26f6d8403cd8e83c7d498c81e01a1f1735 (diff) | |
download | git-211b5f9e62cc961acda59392fbf5a3efa8106c97.tar.gz git-211b5f9e62cc961acda59392fbf5a3efa8106c97.tar.xz |
Support receiving server capabilities
This patch implements the client side of backward compatible upload-pack
protocol extension, <20051027141619.0e8029f2.vsu@altlinux.ru> by Sergey.
The updated server can append "server_capabilities" which is supposed
to be a string containing space separated features of the server, after
one of elements in the initial list of SHA1-refname line, hidden with
an embedded NUL.
After get_remote_heads(), check if the server supports the feature like
if (server_supports("multi_ack"))
do_something();
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -340,6 +340,7 @@ extern int match_refs(struct ref *src, struct ref *dst, struct ref ***dst_tail, int nr_refspec, char **refspec, int all); extern int get_ack(int fd, unsigned char *result_sha1); extern struct ref **get_remote_heads(int in, struct ref **list, int nr_match, char **match, int ignore_funny); +extern int server_supports(const char *feature); extern struct packed_git *parse_pack_index(unsigned char *sha1); extern struct packed_git *parse_pack_index_file(const unsigned char *sha1, |