mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
153c622157
Some fields were redundant, some are simply moved into 'struct lightningd'. All routines updated to hand 'struct lightningd *ld' now. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
17 lines
480 B
C
17 lines
480 B
C
#ifndef LIGHTNING_LIGHTNINGD_OPTIONS_H
|
|
#define LIGHTNING_LIGHTNINGD_OPTIONS_H
|
|
#include "config.h"
|
|
#include <ccan/tal/tal.h>
|
|
|
|
struct lightningd;
|
|
|
|
/* You can register additional options *after* this if you want. */
|
|
void register_opts(struct lightningd *ld);
|
|
|
|
/* After this, we're in the .lightning dir, config file parsed.
|
|
* If we just created the dir, returns true.
|
|
*/
|
|
bool handle_opts(struct lightningd *ld, int argc, char *argv[]);
|
|
|
|
#endif /* LIGHTNING_LIGHTNINGD_OPTIONS_H */
|