aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/main.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Copyright: Update to 2022mj-xmr2022-03-041-1/+1
|
* daemon: allow proxy configurationanon2021-08-201-0/+2
| | | | | Co-authored-by: selsta <selsta@sent.at> Co-authored-by: tobtoht <thotbot@protonmail.com>
* Add rpc-restricted-bind-ip optionHoward Chu2020-10-291-1/+2
| | | | Fixes #6369
* daemon: Windows - fix FAT32 warning, trailing backslash is requiredxiphon2020-09-201-1/+1
|
* Adding ZMQ/Pub support for txpool_add and chain_main eventsLee Clagett2020-05-041-0/+1
|
* Merge pull request #6578Alexander Blair2020-07-191-0/+21
|\ | | | | | | a6803231e daemon: complain if data dir resides on FAT32 volume (Windows) (xiphon)
| * daemon: complain if data dir resides on FAT32 volume (Windows)xiphon2020-05-211-0/+21
| |
* | Update copyright year to 2020SomaticFanatic2020-05-061-1/+1
|/ | | | Update copyright year to 2020
* remove empty statementsInterchained2020-02-171-1/+1
| | | | Cleaning up a little around the code base.
* Merge pull request #5878luigi11112019-09-241-11/+0
|\ | | | | | | f9b3f6e Removed Berkeley DB and db switching logic (JesusRami)
| * Removed Berkeley DB and db switching logicJesus Ramirez2019-09-161-11/+0
| |
* | simplewallet: lock console on inactivitymoneromooo-monero2019-08-281-6/+2
|/
* Merge pull request #5597luigi11112019-07-241-0/+1
|\ | | | | | | 343c0b4 add a command line option to disable ZMQ server (jtgrassie)
| * add a command line option to disable ZMQ serverJethro Grassie2019-06-011-0/+1
| |
* | Add ssl_options support to monerod's rpc mode.Lee Clagett2019-05-221-1/+5
|/
* daemon: fix absolute/relative log file test for windowsmoneromooo-monero2019-04-161-5/+1
|
* daemon: if a log file has a /, interpret it from the cwdmoneromooo-monero2019-04-131-1/+6
| | | | | | rather than from data dir where it normally is. It makes things like --log-file ./foo.log behave as you'd expect.
* Merge pull request #5190Riccardo Spagni2019-03-171-1/+54
|\ | | | | | | 551104fb daemon: add --public-node mode, RPC port propagation over P2P (xiphon)
| * daemon: add --public-node mode, RPC port propagation over P2Pxiphon2019-02-251-1/+54
| |
* | Update 2019 copyrightbinaryFate2019-03-051-1/+1
|/
* daemon: print monero version at startup when calling a detached daemonmoneromooo-monero2018-11-301-10/+10
| | | | So people who want a timstamp get a timestamp
* rpc: allow to pass RPC login via RPC_LOGIN env varDusan Klinec2018-08-311-2/+5
| | | | - passing by parameter is insecure as it is shown in the process list
* Merge pull request #3854luigi11112018-07-191-2/+3
|\ | | | | | | | | | | | | 149da42 db_lmdb: enable batch transactions by default (stoffu) 34cb6b4 add --regtest and --fixed-difficulty for regression testing (vicsn) 9e1403e update get_info RPC and bump RPC version (vicsn) 207b66e first new functional tests (vicsn)
| * add --regtest and --fixed-difficulty for regression testingvictorsintnicolaas2018-06-291-2/+3
| | | | | | | | | | | | | | on_generateblocks RPC call combines functionality from the on_getblocktemplate and on_submitblock RPC calls to allow rapid block creation. Difficulty is set permanently to 1 for regtest. Makes use of FAKECHAIN network type, but takes hard fork heights from mainchain Default reserve_size in generate_blocks RPC call is now 1. If it is 0, the following error occurs 'Failed to calculate offset for'. Queries hard fork heights info of other network types
* | Merge pull request #3897luigi11112018-06-201-1/+2
|\ \ | | | | | | | | | 63d0ab0 mlog: --max-log-files to set the max number of rotated log files (stoffu)
| * | mlog: --max-log-files to set the max number of rotated log filesstoffu2018-06-131-1/+2
| |/
* / daemon: fix readline interfering with std::cerr usagemoneromooo-monero2018-05-311-0/+3
|/ | | | | Once readline is initialized, std::cerr's operator<< will output a 0xff byte for unknown reasons.
* daemon: read config file before reading any other argsstoffu2018-04-141-23/+22
|
* Stagenetstoffu2018-03-051-0/+8
|
* options: add testnet option dependencieswhythat2018-02-161-7/+2
|
* options: remove testnet-* optionswhythat2018-02-161-10/+1
|
* Merge pull request #3161Riccardo Spagni2018-02-161-1/+1
|\ | | | | | | 78a2e15b daemon: exit with 0 when successful (moneromooo-monero)
| * daemon: exit with 0 when successfulmoneromooo-monero2018-01-201-1/+1
| |
* | Update 2018 copyrightxmr-eric2018-01-261-1/+1
| |
* | daemon+simplewallet: given an unknown command, show itstoffu2017-12-271-1/+1
|/
* cryptonote_core does not depend on p2p anymoremoneromooo-monero2017-12-161-0/+1
| | | | | | As a followon side effect, this makes a lot of inline code included only in particular cpp files (and instanciated when necessary.
* daemon & simplewallet: don't set max-concurrency when unspecifiedstoffu2017-11-161-1/+1
|
* wallet: rejig to avoid prompting in wallet2moneromooo-monero2017-11-141-1/+6
| | | | | | wallet2 is a library, and should not prompt for stdin. Instead, pass a function so simplewallet can prompt on stdin, and a GUI might display a window, etc.
* move cryptonote command line options to cryptonote_coremoneromooo-monero2017-11-141-5/+2
| | | | Those have no reason to be in a generic module
* Merge pull request #2589Riccardo Spagni2017-10-151-2/+2
|\ | | | | | | 8f0cea63 add a command_line function to check for defaulted options (moneromooo-monero)
| * add a command_line function to check for defaulted optionsmoneromooo-monero2017-10-061-2/+2
| |
* | Add tools::on_startup, and warn about glibc 2.25 bug if foundmoneromooo-monero2017-10-141-1/+1
|/ | | | https://sourceware.org/bugzilla/show_bug.cgi?id=21778
* Merge pull request #2456Riccardo Spagni2017-09-251-1/+2
|\ | | | | | | 91def9a5 daemon, wallet: add --max-log-file-size option (selsta)
| * daemon, wallet: add --max-log-file-size optionselsta2017-09-171-1/+2
| |
* | Merge pull request #2044Riccardo Spagni2017-09-181-0/+3
|\ \ | |/ |/| | | | | | | | | 0299cb77 Fix various oversights/bugs in ZMQ RPC server code (Thomas Winget) 77986023 json serialization for rpc-relevant monero types (Thomas Winget) 5c1e08fe Refactor some things into more composable (smaller) functions (Thomas Winget) 9ac2ad07 DRY refactoring (Thomas Winget)
| * Fix various oversights/bugs in ZMQ RPC server codeThomas Winget2017-09-051-1/+0
| | | | | | | | | | | | | | | | | | - Add some RPC commands (and touch up a couple others) - some bounds checking - some better pointer management - const correctness and error handling -- Thanks @vtnerd for type help with serialization and CMake changes
| * json serialization for rpc-relevant monero typesThomas Winget2017-09-051-0/+4
| | | | | | | | | | | | | | | | | | | | | | Structured {de-,}serialization methods for (many new) types which are used for requests or responses in the RPC. New types include RPC requests and responses, and structs which compose types within those. # Conflicts: # src/cryptonote_core/blockchain.cpp
* | move db specific options to BlockchainDBmoneromooo-monero2017-08-291-1/+1
|/ | | | | Avoids common depending on blockchain_db, which can cause link errors.
* More DB support cleanupHoward Chu2017-08-201-6/+3
| | | | | | | | Hide DB types from db_types.h - no reason to recompile dependencies when DB types change. Also remove lingering in-memory DB references, they've been obsolete since 9e82b694da120708652871b55f639d1ef306a7ec
* daemon: avoid pre-log-init spew on creating directoriesmoneromooo-monero2017-02-241-1/+3
|