Revision cc2a7403fef8c3e19e8d5b3939e5a9ee4789fd86 authored by Junio C Hamano on 01 August 2019, 16:10:49 UTC, committed by Junio C Hamano on 01 August 2019, 16:10:50 UTC
* jc/dir-iterator-test-fix:
  test-dir-iterator: do not assume errno values
2 parent s a7b27d9 + 9042140
Raw File
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