]> git.ipfire.org Git - thirdparty/git.git/blobdiff - remote.h
Merge branch 'bw/protocol-v2'
[thirdparty/git.git] / remote.h
index f09c01969d6b0d701140ceb9cb2e8f9e68533c96..2b3180f94dbc185a315255938c2de6cc6aef0b13 100644 (file)
--- a/remote.h
+++ b/remote.h
@@ -151,10 +151,17 @@ int check_ref_type(const struct ref *ref, int flags);
 void free_refs(struct ref *ref);
 
 struct oid_array;
-extern struct ref **get_remote_heads(int in, char *src_buf, size_t src_len,
+struct packet_reader;
+struct argv_array;
+extern struct ref **get_remote_heads(struct packet_reader *reader,
                                     struct ref **list, unsigned int flags,
                                     struct oid_array *extra_have,
-                                    struct oid_array *shallow);
+                                    struct oid_array *shallow_points);
+
+/* Used for protocol v2 in order to retrieve refs from a remote */
+extern struct ref **get_remote_refs(int fd_out, struct packet_reader *reader,
+                                   struct ref **list, int for_push,
+                                   const struct argv_array *ref_prefixes);
 
 int resolve_remote_symref(struct ref *ref, struct ref *list);
 int ref_newer(const struct object_id *new_oid, const struct object_id *old_oid);