https://github.com/git/git
Raw File
Tip revision: d60b6a96f087ea5ad530b71096a604c993fd9e71 authored by Johannes Schindelin on 12 February 2021, 14:49:46 UTC
Git 2.23.4
Tip revision: d60b6a9
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