Revision 359da658ae32d9a7e5e93ac173fc221352b62917 authored by Johannes Schindelin on 23 June 2022, 10:36:05 UTC, committed by Johannes Schindelin on 23 June 2022, 10:36:05 UTC
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent aef3d59
Raw File
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