You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
371 B

#ifndef UPLOAD_PACK_H
#define UPLOAD_PACK_H
void upload_pack(const int advertise_refs, const int stateless_rpc,
const int timeout);
struct repository;
struct packet_reader;
int upload_pack_v2(struct repository *r, struct packet_reader *request);
struct strbuf;
int upload_pack_advertise(struct repository *r,
struct strbuf *value);
#endif /* UPLOAD_PACK_H */