https://github.com/git/git
Raw File
Tip revision: 8104ec994ea3849a968b4667d072fedd1e688642 authored by Junio C Hamano on 24 February 2019, 15:55:19 UTC
Git 2.21
Tip revision: 8104ec9
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