mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
f6006f43a9
We want to have a static Tor service created from a blob bound to our node on cmdline Changelog-added: persistent Tor address support Changelog-added: allow the Tor inbound service port differ from 9735 Signed-off-by: Saibato <saibato.naga@pm.me> Add base64 encode/decode to common We need this to encode the blob for the tor service Signed-off-by: Saibato <saibato.naga@pm.me>
27 lines
791 B
C
27 lines
791 B
C
#ifndef LIGHTNING_CONNECTD_TOR_AUTOSERVICE_H
|
|
#define LIGHTNING_CONNECTD_TOR_AUTOSERVICE_H
|
|
#include "config.h"
|
|
#include <ccan/short_types/short_types.h>
|
|
#include <ccan/tal/tal.h>
|
|
#include <stdbool.h>
|
|
#include <stdlib.h>
|
|
|
|
struct wireaddr *tor_autoservice(const tal_t *ctx,
|
|
const struct wireaddr_internal *tor_serviceaddr,
|
|
const char *tor_password,
|
|
const struct wireaddr_internal *bindings,
|
|
const bool use_v3_autotor);
|
|
|
|
struct wireaddr *tor_fixed_service(const tal_t *ctx,
|
|
const struct wireaddr_internal *tor_serviceaddr,
|
|
const char *tor_password,
|
|
const u8 *blob,
|
|
const struct wireaddr *bind,
|
|
const u8 index);
|
|
|
|
const struct wireaddr *
|
|
find_local_address(const struct wireaddr_internal *bindings);
|
|
|
|
|
|
#endif /* LIGHTNING_CONNECTD_TOR_AUTOSERVICE_H */
|