aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/command_server.cpp
Commit message (Collapse)AuthorAgeFilesLines
* epee: optionally restrict HTTP service to a configurable user agentmoneromooo-monero2016-09-181-1/+2
| | | | | | | | This is intended to catch traffic coming from a web browser, so we avoid issues with a web page sending a transfer RPC to the wallet. Requiring a particular user agent can act as a simple password scheme, while we wait for 0MQ and proper authentication to be merged.
* Fix incorrect help usage for the threads option to start_miningQuanah Gibson-Mount2016-08-301-1/+1
|
* New RPC and daemon command to get output histogrammoneromooo-monero2016-03-261-0/+5
| | | | | | | | | | | | | | | | | This is a list of existing output amounts along with the number of outputs of that amount in the blockchain. The daemon command takes: - no parameters: all outputs with at least 3 instances - one parameter: all outputs with at least that many instances - two parameters: all outputs within that many instances The default starts at 3 to avoid massive spamming of all dust outputs in the blockchain, and is the current minimum mixin requirement. An optional vector of amounts may be passed, to request histogram only for those outputs.
* Revert "Print stack trace upon exceptions"moneromooo-monero2016-03-211-1/+0
| | | | | | Ain't nobody got time for link/cmake skullduggery. This reverts commit fff238ec94ac6d45fc18c315d7bc590ddfaad63d.
* Print stack trace upon exceptionsmoneromooo-monero2016-03-191-0/+1
| | | | Useful for debugging users' logs
* new flush_txpool command, and associated RPC callmoneromooo-monero2016-01-301-0/+5
| | | | | It can flush a particular tx, or the whole pool (the RPC command can flush a list of transactions too)
* 'max limit of...' is redundant wording, rephrasebinaryFate2016-01-141-1/+1
|
* update versionRiccardo Spagni2015-12-311-1/+1
|
* updated copyright yearRiccardo Spagni2015-12-311-1/+1
|
* add RPC calls and commands to get/set bansmoneromooo-monero2015-11-261-0/+15
|
* daemon: add a status commandmoneromooo-monero2015-10-251-0/+5
| | | | | | Displays current block height and target, net hash, hard fork basic info, and connections. Useful as a basic user friendly "what's going on here" command.
* Add an RPC call and daemon command to get info on hard fork votingmoneromooo-monero2015-09-191-0/+5
|
* Add a is_key_image_spent daemon command and RPC callmoneromooo-monero2015-08-111-0/+5
|
* fix ^D exit for bitmonerodmoneromooo-monero2015-06-031-2/+2
| | | | | | It uses the async console handler differently than simplewallet, and wasn't running the same exit code, causing it to never actually exit after breaking out of the console entry loop.
* cleaning up, removing redundant files, renaming, fixing incorrect licensesRiccardo Spagni2015-05-311-7/+7
|
* remerged; commands JSON. logging upgrade. doxygenrfree2monero2015-04-011-2/+22
|
* Restore daemon interactive modeThomas Winget2015-03-271-1/+30
| | | | | | | Daemon interactive mode is now working again. RPC mapped calls in daemon and wallet have both had connection_context removed as an argument as that argument was not being used anywhere.
* RPC calls for background daemon added inThomas Winget2015-02-241-1/+6
| | | | | | | The RPC calls the daemon executable uses to talk to the running daemon instance have mostly been added back in. Rate limiting has not been added in upstream, but is on its way in a separate effort, so those calls are still NOPed out.
* Daemonize changes pulled in -- daemon buildsThomas Winget2015-02-241-0/+179
many RPC functions added by the daemonize changes (and related changes on the upstream dev branch that were not merged) were commented out (apart from return). Other than that, this *should* work...at any rate, it builds, and that's something.