Staging
v0.5.1
https://github.com/git/git
Revision ab15ad1a3b4b04a29415aef8c9afa2f64fc194a2 authored by Junio C Hamano on 13 May 2019, 14:40:13 UTC, committed by Junio C Hamano on 13 May 2019, 14:50:35 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 49bc8ce
Raw File
Tip revision: ab15ad1a3b4b04a29415aef8c9afa2f64fc194a2 authored by Junio C Hamano on 13 May 2019, 14:40:13 UTC
Git 2.22-rc0
Tip revision: ab15ad1
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