Staging
v0.5.1
https://github.com/git/git
Revision 87680d32efb6d14f162e54ad3bda4e3d6c908559 authored by Junio C Hamano on 20 May 2020, 15:33:55 UTC, committed by Junio C Hamano on 20 May 2020, 15:33:55 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 22954ba
Raw File
Tip revision: 87680d32efb6d14f162e54ad3bda4e3d6c908559 authored by Junio C Hamano on 20 May 2020, 15:33:55 UTC
Git 2.27-rc1
Tip revision: 87680d3
serve.h
#ifndef SERVE_H
#define SERVE_H

struct argv_array;
int has_capability(const struct argv_array *keys, const char *capability,
		   const char **value);

struct serve_options {
	unsigned advertise_capabilities;
	unsigned stateless_rpc;
};
#define SERVE_OPTIONS_INIT { 0 }
void serve(struct serve_options *options);

#endif /* SERVE_H */
back to top