https://github.com/git/git
Revision 9a85b489d84c2a63de21fd16830d7f1b8628e6b8 authored by James Hill on 26 December 2019, 01:53:08 UTC, committed by GitHub on 26 December 2019, 01:53:08 UTC
1 parent 99c33be
Raw File
Tip revision: 9a85b489d84c2a63de21fd16830d7f1b8628e6b8 authored by James Hill on 26 December 2019, 01:53:08 UTC
Update INSTALL
Tip revision: 9a85b48
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