summaryrefslogtreecommitdiff
path: root/transport.h
diff options
context:
space:
mode:
authorBrandon Williams <bmwill@google.com>2018-03-15 17:31:23 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-03-15 19:01:08 (GMT)
commit1af8ae1cfa44a3f3c3f1efb7f9ebe68bc0ce7578 (patch)
treecaf98c45f10651c6b86ba2c6753716c0ee4ae2c7 /transport.h
parent834cf34b26035abc58f7c2b0f2afd5527e93c30d (diff)
downloadgit-1af8ae1cfa44a3f3c3f1efb7f9ebe68bc0ce7578.zip
git-1af8ae1cfa44a3f3c3f1efb7f9ebe68bc0ce7578.tar.gz
git-1af8ae1cfa44a3f3c3f1efb7f9ebe68bc0ce7578.tar.bz2
transport: convert transport_get_remote_refs to take a list of ref prefixes
Teach transport_get_remote_refs() to accept a list of ref prefixes, which will be sent to the server for use in filtering when using protocol v2. (This list will be ignored when not using protocol v2.) Signed-off-by: Brandon Williams <bmwill@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'transport.h')
-rw-r--r--transport.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/transport.h b/transport.h
index 731c78b..83992a42 100644
--- a/transport.h
+++ b/transport.h
@@ -178,7 +178,17 @@ int transport_push(struct transport *connection,
int refspec_nr, const char **refspec, int flags,
unsigned int * reject_reasons);
-const struct ref *transport_get_remote_refs(struct transport *transport);
+/*
+ * Retrieve refs from a remote.
+ *
+ * Optionally a list of ref prefixes can be provided which can be sent to the
+ * server (when communicating using protocol v2) to enable it to limit the ref
+ * advertisement. Since ref filtering is done on the server's end (and only
+ * when using protocol v2), this can return refs which don't match the provided
+ * ref_prefixes.
+ */
+const struct ref *transport_get_remote_refs(struct transport *transport,
+ const struct argv_array *ref_prefixes);
int transport_fetch_refs(struct transport *transport, struct ref *refs);
void transport_unlock_pack(struct transport *transport);