1#ifndef SERVE_H2#define SERVE_H34struct argv_array;5extern int has_capability(const struct argv_array *keys, const char *capability,6const char **value);78struct serve_options {9unsigned advertise_capabilities;10unsigned stateless_rpc;11};12#define SERVE_OPTIONS_INIT { 0 }13extern void serve(struct serve_options *options);1415#endif /* SERVE_H */