t5551: move setup code inside test_expect blocks
[git.git] / serve.h
blobfe65ba9f469018c05dc1c930381cf49eb30357c1
1 #ifndef SERVE_H
2 #define SERVE_H
4 struct argv_array;
5 extern int has_capability(const struct argv_array *keys, const char *capability,
6 const char **value);
8 struct serve_options {
9 unsigned advertise_capabilities;
10 unsigned stateless_rpc;
12 #define SERVE_OPTIONS_INIT { 0 }
13 extern void serve(struct serve_options *options);
15 #endif /* SERVE_H */