b06fdead04
When we ran `make hdr-check`, we got the following warning message: promisor-remote.h:21:46: warning: declaration of 'struct repository' will not be visible outside of this function [-Wvisibility] extern int promisor_remote_get_direct(struct repository *repo, ^ 1 warning generated. This was caused by a missing reference to `struct repository`, which is defined in "repository.h". Include this missing header to fix this warning. Signed-off-by: Denton Liu <liu.denton@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
34 lines
906 B
C
34 lines
906 B
C
#ifndef PROMISOR_REMOTE_H
|
|
#define PROMISOR_REMOTE_H
|
|
|
|
#include "repository.h"
|
|
|
|
struct object_id;
|
|
|
|
/*
|
|
* Promisor remote linked list
|
|
*
|
|
* Information in its fields come from remote.XXX config entries or
|
|
* from extensions.partialclone or core.partialclonefilter.
|
|
*/
|
|
struct promisor_remote {
|
|
struct promisor_remote *next;
|
|
const char *partial_clone_filter;
|
|
const char name[FLEX_ARRAY];
|
|
};
|
|
|
|
extern void promisor_remote_reinit(void);
|
|
extern struct promisor_remote *promisor_remote_find(const char *remote_name);
|
|
extern int has_promisor_remote(void);
|
|
extern int promisor_remote_get_direct(struct repository *repo,
|
|
const struct object_id *oids,
|
|
int oid_nr);
|
|
|
|
/*
|
|
* This should be used only once from setup.c to set the value we got
|
|
* from the extensions.partialclone config option.
|
|
*/
|
|
extern void set_repository_format_partial_clone(char *partial_clone);
|
|
|
|
#endif /* PROMISOR_REMOTE_H */
|