2017-08-28 18:06:01 +02:00
|
|
|
#ifndef LIGHTNING_LIGHTNINGD_OPTIONS_H
|
|
|
|
#define LIGHTNING_LIGHTNINGD_OPTIONS_H
|
2017-01-04 03:52:29 +01:00
|
|
|
#include "config.h"
|
|
|
|
#include <ccan/tal/tal.h>
|
|
|
|
|
2017-08-28 18:09:01 +02:00
|
|
|
struct lightningd;
|
2017-01-04 03:52:29 +01:00
|
|
|
|
2017-02-24 06:52:56 +01:00
|
|
|
/* You can register additional options *after* this if you want. */
|
2017-08-28 18:09:01 +02:00
|
|
|
void register_opts(struct lightningd *ld);
|
2017-02-24 06:52:56 +01:00
|
|
|
|
2018-05-03 14:20:28 +02:00
|
|
|
/* After this, we're in the .lightning dir, config files parsed. */
|
2018-10-31 18:00:44 +01:00
|
|
|
void handle_early_opts(struct lightningd *ld, int argc, char *argv[]);
|
|
|
|
|
|
|
|
/* After this we've parsed all options */
|
2018-05-03 14:20:28 +02:00
|
|
|
void handle_opts(struct lightningd *ld, int argc, char *argv[]);
|
2017-01-04 03:52:29 +01:00
|
|
|
|
2017-10-23 07:05:28 +02:00
|
|
|
/* Derive default color and alias from the pubkey. */
|
|
|
|
void setup_color_and_alias(struct lightningd *ld);
|
2018-01-16 20:43:14 +01:00
|
|
|
|
|
|
|
/* Global to allow deprecated options. */
|
|
|
|
extern bool deprecated_apis;
|
2017-08-28 18:06:01 +02:00
|
|
|
#endif /* LIGHTNING_LIGHTNINGD_OPTIONS_H */
|