diff options
Diffstat (limited to 'third_party/git/serve.h')
-rw-r--r-- | third_party/git/serve.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/third_party/git/serve.h b/third_party/git/serve.h new file mode 100644 index 000000000000..42ddca7f8b4f --- /dev/null +++ b/third_party/git/serve.h @@ -0,0 +1,15 @@ +#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 */ |