]> git.ipfire.org Git - thirdparty/git.git/blob - upload-pack.h
t4034: abstract away SHA-1-specific constants
[thirdparty/git.git] / upload-pack.h
1 #ifndef UPLOAD_PACK_H
2 #define UPLOAD_PACK_H
3
4 struct upload_pack_options {
5 int stateless_rpc;
6 int advertise_refs;
7 unsigned int timeout;
8 int daemon_mode;
9 };
10
11 void upload_pack(struct upload_pack_options *options);
12
13 struct repository;
14 struct argv_array;
15 struct packet_reader;
16 int upload_pack_v2(struct repository *r, struct argv_array *keys,
17 struct packet_reader *request);
18
19 struct strbuf;
20 int upload_pack_advertise(struct repository *r,
21 struct strbuf *value);
22
23 #endif /* UPLOAD_PACK_H */