mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
b00525b8c8
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
39 lines
925 B
C
39 lines
925 B
C
#include "configdir.h"
|
|
#include <ccan/opt/opt.h>
|
|
#include <ccan/tal/path/path.h>
|
|
#include <ccan/tal/str/str.h>
|
|
#include <errno.h>
|
|
|
|
/* Override a tal string; frees the old one. */
|
|
char *opt_set_talstr(const char *arg, char **p)
|
|
{
|
|
tal_free(*p);
|
|
return opt_set_charp(arg, p);
|
|
}
|
|
|
|
static char *default_configdir(const tal_t *ctx)
|
|
{
|
|
char *path;
|
|
const char *env = getenv("HOME");
|
|
if (!env)
|
|
return ".";
|
|
|
|
path = path_join(ctx, env, ".lightning");
|
|
return path;
|
|
}
|
|
|
|
void configdir_register_opts(const tal_t *ctx,
|
|
char **configdir, char **rpc_filename)
|
|
{
|
|
*configdir = default_configdir(ctx);
|
|
*rpc_filename = "lightning-rpc";
|
|
|
|
opt_register_early_arg("--lightning-dir", opt_set_talstr, opt_show_charp,
|
|
configdir,
|
|
"working directory: all other files are relative to this");
|
|
|
|
opt_register_arg("--rpc-file", opt_set_talstr, opt_show_charp,
|
|
rpc_filename,
|
|
"Set JSON-RPC socket (or /dev/tty)");
|
|
}
|