https://github.com/git/git
Raw File
Tip revision: d5b41391a472dcf9486055fd5b8517f893e88daf authored by Taylor Blau on 06 October 2022, 00:24:38 UTC
Git 2.38.1
Tip revision: d5b4139
upload-pack.h
#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 */
back to top