Revision 6a6c0f10a70a6eb101c213b09ae82a9cad252743 authored by Junio C Hamano on 08 May 2019, 15:37:54 UTC, committed by Junio C Hamano on 08 May 2019, 15:37:54 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent f832bcc
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