Staging
v0.5.1
Revision 7f4e64169352e03476b0ea64e7e2973669e491a2 authored by Junio C Hamano on 21 November 2018, 14:24:52 UTC, committed by Junio C Hamano on 21 November 2018, 14:24:52 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 7cb1ea1
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