about summary refs log tree commit diff
path: root/upload-pack.h
diff options
context:
space:
mode:
authorVincent Ambo <Vincent Ambo>2020-01-11T23·36+0000
committerVincent Ambo <Vincent Ambo>2020-01-11T23·36+0000
commit1b593e1ea4d2af0f6444d9a7788d5d99abd6fde5 (patch)
treee3accb9beed5c4c1b5a05c99db71ab2841f0ed04 /upload-pack.h
Squashed 'third_party/git/' content from commit cb71568594
git-subtree-dir: third_party/git
git-subtree-split: cb715685942260375e1eb8153b0768a376e4ece7
Diffstat (limited to 'upload-pack.h')
-rw-r--r--upload-pack.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/upload-pack.h b/upload-pack.h
new file mode 100644
index 0000000000..4bafe16a22
--- /dev/null
+++ b/upload-pack.h
@@ -0,0 +1,23 @@
+#ifndef UPLOAD_PACK_H
+#define UPLOAD_PACK_H
+
+struct upload_pack_options {
+	int stateless_rpc;
+	int advertise_refs;
+	unsigned int timeout;
+	int daemon_mode;
+};
+
+void upload_pack(struct upload_pack_options *options);
+
+struct repository;
+struct argv_array;
+struct packet_reader;
+int upload_pack_v2(struct repository *r, struct argv_array *keys,
+		   struct packet_reader *request);
+
+struct strbuf;
+int upload_pack_advertise(struct repository *r,
+			  struct strbuf *value);
+
+#endif /* UPLOAD_PACK_H */