https://github.com/git/git
Raw File
Tip revision: 17083c79ae842b51d82518e2efe5281346acea0e authored by Junio C Hamano on 13 April 2022, 20:31:29 UTC
Git 2.30.4
Tip revision: 17083c7
serve.h
#ifndef SERVE_H
#define SERVE_H

struct strvec;
int has_capability(const struct strvec *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