From af56e08986b69cc74a6d3177e90986793efcffb7 Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Sat, 5 Jun 2021 16:39:39 -0400 Subject: Start adding the config options. --- config.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/config.c b/config.c index 46c833a..cd9d7df 100644 --- a/config.c +++ b/config.c @@ -3,6 +3,17 @@ #include #include +static const config_opt config_opts[] = { + /* {"name", "desc", type, &var} */ + {"git-root", "Root of git server (can also be a url).", TYPE_STRING, git_root}, + {"socket-type", "Socket type to use (options: unix, network. default: network).", TYPE_STRING, sock_type}, + {"socket", "Path, IP address, or domain name of socket.", TYPE_STRING, sock}, + {"port", "Port to listen on (network socket only).", TYPE_INT, &sock_port}, + {"merge-type", "Type of merge (options: 0 = Merge individually, 1 = Merge into one).", TYPE_INT, &merge_type}, + {"pr-root", "Directory to store pull requests in.", TYPE_STRING, pr_root}, + {"key-file", "Path to file containing gpg/pgp public keys of each maintainer.", TYPE_STRING, key_path}, +}; + char *read_file(const char *filename, long *size) { /* Open the file. */ FILE *fp = fopen(filename, "r"); -- cgit v1.2.3-13-gbd6f