mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
9f9f2f1493
It mainly clutters up options.c. The deprecated handling was very tied to it, so it stays there. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
35 lines
1.1 KiB
C
35 lines
1.1 KiB
C
#ifndef LIGHTNING_LIGHTNINGD_OPTIONS_H
|
|
#define LIGHTNING_LIGHTNINGD_OPTIONS_H
|
|
#include "config.h"
|
|
#include <ccan/ccan/opt/opt.h>
|
|
|
|
struct json_stream;
|
|
struct lightningd;
|
|
|
|
/* After this, early config file and cmdline options parsed. */
|
|
void handle_early_opts(struct lightningd *ld, int argc, char *argv[]);
|
|
|
|
/* After this we're in the .lightning dir, and we've parsed all options */
|
|
void handle_opts(struct lightningd *ld);
|
|
|
|
/* Derive default color and alias from the pubkey. */
|
|
void setup_color_and_alias(struct lightningd *ld);
|
|
|
|
enum opt_autobool {
|
|
OPT_AUTOBOOL_FALSE = 0,
|
|
OPT_AUTOBOOL_TRUE = 1,
|
|
OPT_AUTOBOOL_AUTO = 2,
|
|
};
|
|
char *opt_set_autobool_arg(const char *arg, enum opt_autobool *b);
|
|
bool opt_show_autobool(char *buf, size_t len, const enum opt_autobool *b);
|
|
|
|
/* opt_bool is quite loose; you should use this if wanting to add it to JSON */
|
|
bool opt_canon_bool(const char *val);
|
|
|
|
void add_config_deprecated(struct lightningd *ld,
|
|
struct json_stream *response,
|
|
const struct opt_table *opt,
|
|
const char *name, size_t len);
|
|
bool is_known_opt_cb_arg(char *(*cb_arg)(const char *, void *));
|
|
#endif /* LIGHTNING_LIGHTNINGD_OPTIONS_H */
|