Staging
v0.5.1
https://github.com/git/git
Revision 50b2d72e110cad39ecaf2322bfdf1b60cd13dd96 authored by Junio C Hamano on 19 January 2022, 20:48:46 UTC, committed by Junio C Hamano on 19 January 2022, 20:48:46 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent e2724c1
Raw File
Tip revision: 50b2d72e110cad39ecaf2322bfdf1b60cd13dd96 authored by Junio C Hamano on 19 January 2022, 20:48:46 UTC
Git 2.35-rc2
Tip revision: 50b2d72
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