Staging
v0.5.1
Revision 8104ec994ea3849a968b4667d072fedd1e688642 authored by Junio C Hamano on 24 February 2019, 15:55:19 UTC, committed by Junio C Hamano on 24 February 2019, 15:55:19 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 572e460
Raw File
serve.h
#ifndef SERVE_H
#define SERVE_H

struct argv_array;
extern 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 }
extern void serve(struct serve_options *options);

#endif /* SERVE_H */
back to top