blob: a71e4dc7e21a3ed1d7e7830a8086260cdb7cba11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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);
#endif /* UPLOAD_PACK_H */
|