mirror of
https://github.com/git/git.git
synced 2024-11-08 14:09:26 +01:00
28a592e4f4
The serve.c API added in ed10cb952d3 (serve: introduce git-serve, 2018-03-15) was passing in the raw capabilities "keys", but nothing downstream of it ever used them. Let's remove that code because it's not needed. If we do end up needing to pass information about the advertisement in the future it'll make more sense to have serve.c parse the capabilities keys and pass the result of its parsing, rather than expecting expecting its API users to parse the same keys again. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
10 lines
235 B
C
10 lines
235 B
C
#ifndef LS_REFS_H
|
|
#define LS_REFS_H
|
|
|
|
struct repository;
|
|
struct packet_reader;
|
|
int ls_refs(struct repository *r, struct packet_reader *request);
|
|
int ls_refs_advertise(struct repository *r, struct strbuf *value);
|
|
|
|
#endif /* LS_REFS_H */
|