aboutsummaryrefslogtreecommitdiff
path: root/contrib
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge pull request #5358Riccardo Spagni2019-04-061-7/+40
|\ \ | | | | | | | | | dffdccdc No longer use deprecated RSA_generate_key in favor of RSA_generate_key_ex (Martijn Otto)
| * | No longer use deprecated RSA_generate_key in favor ofMartijn Otto2019-03-271-7/+40
| | | | | | | | | | | | RSA_generate_key_ex
* | | Merge pull request #5348Riccardo Spagni2019-04-064-8/+11
|\ \ \ | | | | | | | | | | | | 59776a64 epee: some more minor JSON parsing speedup (moneromooo-monero)
| * | | epee: some more minor JSON parsing speedupmoneromooo-monero2019-03-254-8/+11
| |/ /
* | | Merge pull request #5327Riccardo Spagni2019-04-013-1/+15
|\ \ \ | | | | | | | | | | | | c23ea796 New interactive daemon command 'print_net_stats': Global traffic stats (rbrunner7)
| * | | New interactive daemon command 'print_net_stats': Global traffic statsrbrunner72019-03-243-1/+15
| | | |
* | | | Merge pull request #5309Riccardo Spagni2019-04-011-0/+1
|\ \ \ \ | |_|_|/ |/| | | | | | | 43042a28 Implement array_entry_t copy constructor (Guido Vranken)
| * | | Implement array_entry_t copy constructorGuido Vranken2019-03-181-0/+1
| |/ / | | | | | | | | | | | | | | | | | | | | | Manually initialize the array_entry_t iterator to ensure it points to the correct m_array, thereby preventing a potential use-after-free situation. Signed-off-by: Guido Vranken <guidovranken@gmail.com>
* | / Added socks proxy (tor/i2pd/kovri) support to walletLee Clagett2019-03-256-76/+135
| |/ |/|
* | Merge pull request #5285Riccardo Spagni2019-03-241-0/+1
|\ \ | | | | | | | | | 6ef816de console_handler: print newline on EOF (moneromooo-monero)
| * | console_handler: print newline on EOFmoneromooo-monero2019-03-131-0/+1
| | | | | | | | | | | | | | | | | | This avoids the annoying case where the shell prints its prompt after the last line from Monero output, causing line editing to sometimes go wonky, for lack of a better term
* | | Merge pull request #5283Riccardo Spagni2019-03-211-5/+6
|\ \ \ | | | | | | | | | | | | 16590294 abstract_tcp_server2: fix crashy race on socket shutdown (moneromooo-monero)
| * | | abstract_tcp_server2: fix crashy race on socket shutdownmoneromooo-monero2019-03-191-5/+6
| |/ /
* | | Merge pull request #5259Riccardo Spagni2019-03-211-1/+0
|\ \ \ | | | | | | | | | | | | 9141a0a1 connection_basic: remove debug exception ^_^ (moneromooo-monero)
| * | | connection_basic: remove debug exception ^_^moneromooo-monero2019-03-081-1/+0
| | | |
* | | | epee: fix build with boost 1.70.0moneromooo-monero2019-03-212-7/+19
| |_|/ |/| | | | | | | | get_io_service was deprecated, and got removed
* | | Merge pull request #5061Riccardo Spagni2019-03-1719-19/+19
|\ \ \ | |_|/ |/| | | | | 1f2930ce Update 2019 copyright (binaryFate)
| * | Update 2019 copyrightbinaryFate2019-03-0519-19/+19
| |/
* | epee: certificate generation fix, pkey deletedDusan Klinec2019-03-101-3/+5
| | | | | | | | - pkey gets deleted by the pkey_deleter but the caller tries to serialize it which causes errors as the memory is freed
* | Fix startup errors with SSL cert generationHoward Chu2019-03-082-38/+6
|/ | | | Use SSL API directly, skip boost layer
* epee: add SSL supportMartijn Otto2019-03-059-43/+152
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | RPC connections now have optional tranparent SSL. An optional private key and certificate file can be passed, using the --{rpc,daemon}-ssl-private-key and --{rpc,daemon}-ssl-certificate options. Those have as argument a path to a PEM format private private key and certificate, respectively. If not given, a temporary self signed certificate will be used. SSL can be enabled or disabled using --{rpc}-ssl, which accepts autodetect (default), disabled or enabled. Access can be restricted to particular certificates using the --rpc-ssl-allowed-certificates, which takes a list of paths to PEM encoded certificates. This can allow a wallet to connect to only the daemon they think they're connected to, by forcing SSL and listing the paths to the known good certificates. To generate long term certificates: openssl genrsa -out /tmp/KEY 4096 openssl req -new -key /tmp/KEY -out /tmp/REQ openssl x509 -req -days 999999 -sha256 -in /tmp/REQ -signkey /tmp/KEY -out /tmp/CERT /tmp/KEY is the private key, and /tmp/CERT is the certificate, both in PEM format. /tmp/REQ can be removed. Adjust the last command to set expiration date, etc, as needed. It doesn't make a whole lot of sense for monero anyway, since most servers will run with one time temporary self signed certificates anyway. SSL support is transparent, so all communication is done on the existing ports, with SSL autodetection. This means you can start using an SSL daemon now, but you should not enforce SSL yet or nothing will talk to you.
* cmake: ARCH_ID fixes for cross compilationTheCharlatan2019-03-051-0/+7
|
* default initialize rpc structuresmoneromooo-monero2019-03-044-9/+35
|
* Merge pull request #5162Riccardo Spagni2019-03-042-6/+14
|\ | | | | | | 4d3b61a3 Use io_service::work in epee tcp server (Lee Clagett)
| * Use io_service::work in epee tcp serverLee Clagett2019-02-102-6/+14
| |
* | Merge pull request #5160Riccardo Spagni2019-03-041-1/+1
|\ \ | | | | | | | | | 7af4fbd4 epee: Add space after ':' in additional http response headers (Tom Smeding)
| * | epee: Add space after ':' in additional http response headersTom Smeding2019-02-181-1/+1
| |/
* | Merge pull request #5146Riccardo Spagni2019-03-043-19/+61
|\ \ | | | | | | | | | 4a9257b4 Support docker for gitian builds (TheCharlatan)
| * | Support docker for gitian buildsTheCharlatan2019-02-143-19/+61
| |/ | | | | | | | | | | | | | | | | | | | | Building with docker is arguably easier and more familiar to most people than either kvm, or lxc. This commit also relaxes the back compat requirement a bit. 32 bit linux now uses glibc version 2.0. Also, the docker shell could not handle gcc arguments containing spaces, so the explicit '-DFELT_TYPE' declaration was dropped. Lastly, this removes some packages from the osx descriptor.
* | Merge pull request #5136Riccardo Spagni2019-03-041-10/+2
|\ \ | | | | | | | | | 7da7a9bb Update openssl to 1.0.2q in depends build system (who-biz)
| * | Update openssl to 1.0.2q in depends build systemwho-biz2019-02-101-10/+2
| |/
* | Merge pull request #5133Riccardo Spagni2019-03-049-316/+11
|\ \ | | | | | | | | | f0fc4064 Various speedups to depends and Travis (TheCharlatan)
| * | Various speedups to depends and TravisTheCharlatan2019-02-239-316/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Further speedups to icu compilation, it is faster to run the pre-generated configure scripts. Ensure that the native protobuf installation only generates the required libraries and binaries. Disable qt compilation when running travis on windows. Qt is used for lrelease, the travis recipe instead usese the a local installation of lrelease. Remove various packages and options from the travis recipe. Update Readline to version 8.0. The previously used url 404'd sometimes, use the official gnu ftp server instead. Remove unused cmake config.
* | | Merge pull request #5113Riccardo Spagni2019-03-041-0/+1
|\ \ \ | | | | | | | | | | | | c0e9e805 Fixed missing return value in once_a_time class on windows (Markus Behm)
| * | | Fixed missing return value in once_a_time class on windowsMarkus Behm2019-02-091-0/+1
| | |/ | |/|
* | | Merge pull request #5102Riccardo Spagni2019-03-042-0/+417
|\ \ \ | | | | | | | | | | | | 1eef0565 performance_tests: better stats, and keep track of timing history (moneromooo-monero)
| * | | performance_tests: better stats, and keep track of timing historymoneromooo-monero2019-01-282-0/+417
| | | |
* | | | Merge pull request #5096Riccardo Spagni2019-03-042-4/+5
|\ \ \ \ | | | | | | | | | | | | | | | 7c3ade44 network_throttle: use circular_buffer where appropriate (moneromooo-monero)
| * | | | network_throttle: use circular_buffer where appropriatemoneromooo-monero2019-02-012-4/+5
| | | | |
* | | | | Merge pull request #5091Riccardo Spagni2019-03-041-1/+4
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | 123fc2a2 i2p: initial support (Jethro Grassie)
| * | | | | i2p: initial supportJethro Grassie2019-01-301-1/+4
| | |_|/ / | |/| | |
* / | | | epee: add SSL supportmoneromooo-monero2019-02-0211-208/+896
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | RPC connections now have optional tranparent SSL. An optional private key and certificate file can be passed, using the --{rpc,daemon}-ssl-private-key and --{rpc,daemon}-ssl-certificate options. Those have as argument a path to a PEM format private private key and certificate, respectively. If not given, a temporary self signed certificate will be used. SSL can be enabled or disabled using --{rpc}-ssl, which accepts autodetect (default), disabled or enabled. Access can be restricted to particular certificates using the --rpc-ssl-allowed-certificates, which takes a list of paths to PEM encoded certificates. This can allow a wallet to connect to only the daemon they think they're connected to, by forcing SSL and listing the paths to the known good certificates. To generate long term certificates: openssl genrsa -out /tmp/KEY 4096 openssl req -new -key /tmp/KEY -out /tmp/REQ openssl x509 -req -days 999999 -sha256 -in /tmp/REQ -signkey /tmp/KEY -out /tmp/CERT /tmp/KEY is the private key, and /tmp/CERT is the certificate, both in PEM format. /tmp/REQ can be removed. Adjust the last command to set expiration date, etc, as needed. It doesn't make a whole lot of sense for monero anyway, since most servers will run with one time temporary self signed certificates anyway. SSL support is transparent, so all communication is done on the existing ports, with SSL autodetection. This means you can start using an SSL daemon now, but you should not enforce SSL yet or nothing will talk to you.
* | | / Adding initial support for broadcasting transactions over TorLee Clagett2019-01-287-126/+309
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | - Support for ".onion" in --add-exclusive-node and --add-peer - Add --anonymizing-proxy for outbound Tor connections - Add --anonymous-inbounds for inbound Tor connections - Support for sharing ".onion" addresses over Tor connections - Support for broadcasting transactions received over RPC exclusively over Tor (else broadcast over public IP when Tor not enabled).
* | | Merge pull request #5062Riccardo Spagni2019-01-281-6/+6
|\ \ \ | | | | | | | | | | | | acfff8d0 rpc: fix internal daemon calls in restricted rpc getting partial data (moneromooo-monero)
| * | | rpc: fix internal daemon calls in restricted rpc getting partial datamoneromooo-monero2019-01-281-6/+6
| | | |
* | | | Merge pull request #5073Riccardo Spagni2019-01-283-6/+6
|\ \ \ \ | |/ / / |/| | | | | | | 45ea19fa bump sodium to 1.0.16 (italocoin)
| * | | bump sodium to 1.0.16italocoin2019-01-153-6/+6
| | | |
* | | | Merge pull request #5065Riccardo Spagni2019-01-281-2/+2
|\ \ \ \ | |_|_|/ |/| | | | | | | ca86ef1b readline: don't dereference possible NULL pointer (Jethro Grassie)
| * | | readline: don't dereference possible NULL pointerJethro Grassie2019-01-211-2/+2
| | |/ | |/|
* / | Pruningmoneromooo-monero2019-01-224-2/+29
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The blockchain prunes seven eighths of prunable tx data. This saves about two thirds of the blockchain size, while keeping the node useful as a sync source for an eighth of the blockchain. No other data is currently pruned. There are three ways to prune a blockchain: - run monerod with --prune-blockchain - run "prune_blockchain" in the monerod console - run the monero-blockchain-prune utility The first two will prune in place. Due to how LMDB works, this will not reduce the blockchain size on disk. Instead, it will mark parts of the file as free, so that future data will use that free space, causing the file to not grow until free space grows scarce. The third way will create a second database, a pruned copy of the original one. Since this is a new file, this one will be smaller than the original one. Once the database is pruned, it will stay pruned as it syncs. That is, there is no need to use --prune-blockchain again, etc.