mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
a2ba162cda
Sometimes it is useful to get information of an object without having to download it completely. Add the "object-info" capability that lets the client ask for object-related information with their full hexadecimal object names. Only sizes are returned for now. Signed-off-by: Bruno Albuquerque <bga@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
10 lines
No EOL
235 B
C
10 lines
No EOL
235 B
C
#ifndef PROTOCOL_CAPS_H
|
|
#define PROTOCOL_CAPS_H
|
|
|
|
struct repository;
|
|
struct strvec;
|
|
struct packet_reader;
|
|
int cap_object_info(struct repository *r, struct strvec *keys,
|
|
struct packet_reader *request);
|
|
|
|
#endif /* PROTOCOL_CAPS_H */ |