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"
|
|
|
|
|
2017-08-28 18:09:01 +02:00
|
|
|
struct lightningd;
|
2017-01-04 03:52:29 +01:00
|
|
|
|
2019-07-25 08:37:58 +02:00
|
|
|
/* After this, early config file and cmdline options parsed. */
|
2018-10-31 18:00:44 +01:00
|
|
|
void handle_early_opts(struct lightningd *ld, int argc, char *argv[]);
|
|
|
|
|
2019-07-25 08:37:58 +02:00
|
|
|
/* After this we're in the .lightning dir, and 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
|
|
|
|
2017-08-28 18:06:01 +02:00
|
|
|
#endif /* LIGHTNING_LIGHTNINGD_OPTIONS_H */
|