Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 9877106b01cbd346b862cc8cd2c52e496dd40ed5 authored by Johannes Schindelin on 04 December 2019, 21:22:52 UTC
Git 2.18.2
Tip revision: 9877106
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