diff options
| author | anon <anon [at] nowhere> | 2021-03-18 20:50:21 +0000 |
|---|---|---|
| committer | tobtoht <thotbot@protonmail.com> | 2021-08-20 21:24:29 +0200 |
| commit | 4ced092aae04e5a6789e94b68a07c74e653cd869 (patch) | |
| tree | 8b298bd88ae5bcdf88eaa3e8a7c510b527d56d91 /src/cryptonote_core/cryptonote_core.h | |
| parent | 1c8e598172bd2eddba2607cae0804db2e685813b (diff) | |
| download | monzero-core-4ced092aae04e5a6789e94b68a07c74e653cd869.tar.gz monzero-core-4ced092aae04e5a6789e94b68a07c74e653cd869.tar.xz monzero-core-4ced092aae04e5a6789e94b68a07c74e653cd869.zip | |
daemon: allow proxy configuration
Co-authored-by: selsta <selsta@sent.at>
Co-authored-by: tobtoht <thotbot@protonmail.com>
Diffstat (limited to 'src/cryptonote_core/cryptonote_core.h')
| -rw-r--r-- | src/cryptonote_core/cryptonote_core.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cryptonote_core/cryptonote_core.h b/src/cryptonote_core/cryptonote_core.h index 8891540a9..5a73be7fc 100644 --- a/src/cryptonote_core/cryptonote_core.h +++ b/src/cryptonote_core/cryptonote_core.h @@ -276,10 +276,11 @@ namespace cryptonote * @param vm command line parameters * @param test_options configuration options for testing * @param get_checkpoints if set, will be called to get checkpoints data, must return checkpoints data pointer and size or nullptr if there ain't any checkpoints for specific network type + * @param allow_dns whether or not to allow DNS requests * * @return false if one of the init steps fails, otherwise true */ - bool init(const boost::program_options::variables_map& vm, const test_options *test_options = NULL, const GetCheckpointsCallback& get_checkpoints = nullptr); + bool init(const boost::program_options::variables_map& vm, const test_options *test_options = NULL, const GetCheckpointsCallback& get_checkpoints = nullptr, bool allow_dns = true); /** * @copydoc Blockchain::reset_and_set_genesis_block |
