aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
...
| * Bugfix: Always include univalue in DIST_SUBDIRSLuke Dashjr2016-01-311-3/+1
| |
| * Build against system UniValue when availableLuke Dashjr2016-01-151-6/+13
| |
* | Merge branch 'master' into single_prodnameLuke Dashjr2016-02-031-54/+69
|\ \
| * \ Merge #7091: Consensus build packageWladimir J. van der Laan2016-02-021-44/+42
| |\ \ | | | | | | | | | | | | | | | | | | | | cf82d05 Build: Consensus: Make libbitcoinconsensus_la_SOURCES fully dynamic and dependend on both crypto and consensus packages (Jorge Timón) 4feadec Build: Libconsensus: Move libconsensus-ready files to the consensus package (Jorge Timón) a3d5eec Build: Consensus: Move consensus files from common to its own module/package (Jorge Timón)
| | * | Build: Consensus: Make libbitcoinconsensus_la_SOURCES fully dynamic and ↵Jorge Timón2015-12-081-7/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | dependend on both crypto and consensus packages Some extra bytes in libconsensus to get all the crypto (except for signing, which is in the common module) below the libconsensus future independent repo (that has libsecp256k1 as a subtree). hmac_sha256.o seems to be the only thing libbitcoinconsensus doesn't depend on from crypto, some more bytes for the final libconsensus: I'm not personally worried.
| | * | Build: Libconsensus: Move libconsensus-ready files to the consensus packageJorge Timón2015-12-081-8/+8
| | | |
| | * | Build: Consensus: Move consensus files from common to its own module/packageJorge Timón2015-12-081-30/+34
| | |/
| * | Merge #7348: MOVE ONLY: move rpc* to rpc/Wladimir J. van der Laan2016-01-281-11/+11
| |\ \ | | | | | | | | | | | | | | | | d13f65e rpc: update inline comments to refer to new file paths (Daniel Cousens) a0eaff8 move rpc* to rpc/ (Daniel Cousens)
| | * | move rpc* to rpc/Daniel Cousens2016-01-211-11/+11
| | | |
| * | | release: add check-symbols and check-security make targetsCory Fields2016-01-261-1/+13
| |/ / | | | | | | | | | | | | These are not added to the default checks because some of them depend on release-build configs.
| * | Merge #7307: [RPC, Wallet] Move RPC dispatch table registration to wallet/ codeWladimir J. van der Laan2016-01-201-0/+1
| |\ \ | | | | | | | | | | | | dd2dc40 [RPC, Wallet] Move RPC dispatch table registration to wallet/ code (Jonas Schnelli)
| | * | [RPC, Wallet] Move RPC dispatch table registration to wallet/ codeJonas Schnelli2016-01-201-0/+1
| | | | | | | | | | | | | | | | Allow extending the rpc dispatch table by appending commands when server is not running.
| * | | RPC: indicate which transactions are replaceableSuhas Daftuar2016-01-191-0/+2
| |/ / | | | | | | | | | | | | | | | Add "bip125-replaceable" output field to listtransactions and gettransaction which indicates if an unconfirmed transaction, or any unconfirmed parent, is signaling opt-in RBF according to BIP 125.
| * | Merge pull request #7133Wladimir J. van der Laan2015-12-031-1/+0
| |\ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | aa4b0c2 When not filtering blocks, getdata sends more in one test (Pieter Wuille) d41e44c Actually only use filterInventoryKnown with MSG_TX inventory messages. (Gregory Maxwell) b6a0da4 Only use filterInventoryKnown with MSG_TX inventory messages. (Patick Strateman) 6b84935 Rename setInventoryKnown filterInventoryKnown (Patick Strateman) e206724 Remove mruset as it is no longer used. (Gregory Maxwell) ec73ef3 Replace setInventoryKnown with a rolling bloom filter. (Gregory Maxwell)
| | * Remove mruset as it is no longer used.Gregory Maxwell2015-11-301-1/+0
| | |
| * | Merge pull request #6914Wladimir J. van der Laan2015-12-011-0/+1
| |\ \ | | |/ | |/| | | | 114b581 Prevector type (Pieter Wuille)
| | * Prevector typePieter Wuille2015-11-131-0/+1
| | |
| * | Add merkle.{h,cpp}, generic merkle root/branch algorithmPieter Wuille2015-11-271-0/+2
| | |
* | | Unify package name to as few places as possible without major changesLuke Dashjr2015-12-141-1/+2
|/ /
* / Switch to libsecp256k1-based validation for ECDSAPieter Wuille2015-11-151-8/+2
|/
* Merge pull request #6639Wladimir J. van der Laan2015-11-121-0/+2
|\ | | | | | | | | | | | | | | 58ef0ff doc: update docs for Tor listening (Wladimir J. van der Laan) 68ccdc4 doc: Mention Tor listening in release notes (Wladimir J. van der Laan) 09c1ae1 torcontrol improvements and fixes (Wladimir J. van der Laan) 2f796e5 Better error message if Tor version too old (Peter Todd) 8f4e67f net: Automatically create hidden service, listen on Tor (Wladimir J. van der Laan)
| * net: Automatically create hidden service, listen on TorWladimir J. van der Laan2015-11-101-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Starting with Tor version 0.2.7.1 it is possible, through Tor's control socket API, to create and destroy 'ephemeral' hidden services programmatically. https://stem.torproject.org/api/control.html#stem.control.Controller.create_ephemeral_hidden_service This means that if Tor is running (and proper authorization is available), bitcoin automatically creates a hidden service to listen on, without user manual configuration. This will positively affect the number of available .onion nodes. - When the node is started, connect to Tor through control socket - Send `ADD_ONION` command - First time: - Make it create a hidden service key - Save the key in the data directory for later usage - Make it redirect port 8333 to the local port 8333 (or whatever port we're listening on). - Keep control socket connection open for as long node is running. The hidden service will (by default) automatically go away when the connection is closed.
* | build: Split hardening/fPIE options outCory Fields2015-11-091-14/+27
|/ | | | This allows for fPIE to be used selectively.
* Remove coverage and test related files, when cleaning updexX72015-10-231-2/+14
| | | | | | | Until now there were quite a few leftovers, and only the coverage related files in `src/` were cleaned, while the ones in the other dirs remained. `qa/tmp/` is related to the BitcoinJ tests, and `cache/` is related to RPC tests.
* leveldbwrapper file rename to dbwrapper.*Jeff Garzik2015-10-221-2/+2
|
* build: univalue subdir build fixupsCory Fields2015-10-131-2/+3
| | | | | | - Force a rebuild if the headers change - Only build the lib target - Clean univalue on 'make clean'
* build: match upstream build changeCory Fields2015-10-091-1/+1
|
* build: Make use of ZMQ_CFLAGSCory Fields2015-10-081-1/+1
|
* Merge pull request #6733Wladimir J. van der Laan2015-10-061-0/+5
|\ | | | | | | | | 7072c54 Support very-fast-running benchmarks (Gavin Andresen) 535ed92 Simple benchmarking framework (Gavin Andresen)
| * Simple benchmarking frameworkGavin Andresen2015-09-301-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Benchmarking framework, loosely based on google's micro-benchmarking library (https://github.com/google/benchmark) Wny not use the Google Benchmark framework? Because adding Even More Dependencies isn't worth it. If we get a dozen or three benchmarks and need nanosecond-accurate timings of threaded code then switching to the full-blown Google Benchmark library should be considered. The benchmark framework is hard-coded to run each benchmark for one wall-clock second, and then spits out .csv-format timing information to stdout. It is left as an exercise for later (or maybe never) to add command-line arguments to specify which benchmark(s) to run, how long to run them for, how to format results, etc etc etc. Again, see the Google Benchmark framework for where that might end up. See src/bench/MilliSleep.cpp for a sanity-test benchmark that just benchmarks 'sleep 100 milliseconds.' To compile and run benchmarks: cd src; make bench Sample output: Benchmark,count,min,max,average Sleep100ms,10,0.101854,0.105059,0.103881
* | remove $(@F) and subdirs from univalue makeJonas Schnelli2015-10-011-2/+2
| |
* | [Univalue] add univalue over subtreeJonas Schnelli2015-10-011-14/+9
| | | | | | | | similar to secp256k1 include and compile univalue over a subtree
* | build: Remove dependency of bitcoin-cli on secp256k1Wladimir J. van der Laan2015-09-281-2/+1
|/ | | | | bitcoin-cli (in contrast to bitcoin-tx, which does signing ops) shouldn't need secp256k1, and indeed it doesn't.
* Add ZeroMQ support. Notify blocks and transactions via ZeroMQJeff Garzik2015-09-161-2/+24
| | | | | | | | | Continues Johnathan Corgan's work. Publishing multipart messages Bugfix: Add missing zmq header includes Bugfix: Adjust build system to link ZeroMQ code for Qt binaries
* Merge pull request #5677Wladimir J. van der Laan2015-09-041-4/+8
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | d528025 Revert "rpc-tests: re-enable rpc-tests for Windows" (Wladimir J. van der Laan) 1e700c9 doc: update deps in build-unix.md after libevent (Wladimir J. van der Laan) 26c9b83 Move windows socket init to utility function (Wladimir J. van der Laan) 4be0b08 libevent: Windows reuseaddr workaround in depends (Cory Fields) 3a174cd Fix race condition between starting HTTP server thread and setting EventBase() (Wladimir J. van der Laan) 6d2bc22 Document options for new HTTP/RPC server in --help (Wladimir J. van der Laan) be33f3f Implement RPCTimerHandler for Qt RPC console (Wladimir J. van der Laan) 57d85d9 doc: mention SSL support dropped for RPC in release notes (Wladimir J. van der Laan) 40b556d evhttpd implementation (Wladimir J. van der Laan) ee2a42b tests: GET requests cannot have request body, use POST in rest.py (Wladimir J. van der Laan) 6e996d3 tests: fix qt payment test (Cory Fields) 3140ef9 build: build-system changes for libevent (Wladimir J. van der Laan) a9af234 libevent: add depends (Cory Fields) 6a21dd5 Remove rpc_boostasiotocnetaddr test (Wladimir J. van der Laan) 8f9301c qa: Remove -rpckeepalive tests from httpbasics (Wladimir J. van der Laan) 51fcfc0 doc: remove documentation for rpcssl (Wladimir J. van der Laan)
| * evhttpd implementationWladimir J. van der Laan2015-09-031-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - *Replace usage of boost::asio with [libevent2](http://libevent.org/)*. boost::asio is not part of C++11, so unlike other boost there is no forwards-compatibility reason to stick with it. Together with #4738 (convert json_spirit to UniValue), this rids Bitcoin Core of the worst offenders with regard to compile-time slowness. - *Replace spit-and-duct-tape http server with evhttp*. Front-end http handling is handled by libevent, a work queue (with configurable depth and parallelism) is used to handle application requests. - *Wrap HTTP request in C++ class*; this makes the application code mostly HTTP-server-neutral - *Refactor RPC to move all http-specific code to a separate file*. Theoreticaly this can allow building without HTTP server but with another RPC backend, e.g. Qt's debug console (currently not implemented) or future RPC mechanisms people may want to use. - *HTTP dispatch mechanism*; services (e.g., RPC, REST) register which URL paths they want to handle. By using a proven, high-performance asynchronous networking library (also used by Tor) and HTTP server, problems such as #5674, #5655, #344 should be avoided. What works? bitcoind, bitcoin-cli, bitcoin-qt. Unit tests and RPC/REST tests pass. The aim for now is everything but SSL support. Configuration options: - `-rpcthreads`: repurposed as "number of work handler threads". Still defaults to 4. - `-rpcworkqueue`: maximum depth of work queue. When this is reached, new requests will return a 500 Internal Error. - `-rpctimeout`: inactivity time, in seconds, after which to disconnect a client. - `-debug=http`: low-level http activity logging
| * build: build-system changes for libeventWladimir J. van der Laan2015-09-021-4/+4
| |
* | Replace boost::reverse_lock with our own.Casey Rodarmor2015-09-031-0/+1
|/
* Separate core memory usage computation in core_memusage.hPieter Wuille2015-07-201-0/+1
|
* Policy: MOVEONLY: 3 functions to policy.o:Luke Dashjr2015-06-261-0/+1
| | | | | | | | - [script/standard.o] IsStandard - [main.o] IsStandardTx - [main.o] AreInputsStandard Also, don't use namespace std in policy.cpp
* Policy: MOVEONLY: Create policy/policy.h with some constantsJorge Timón2015-06-261-0/+1
|
* Remove JSON Spirit wrapper, remove JSON Spirit leftoversJonas Schnelli2015-06-041-12/+0
| | | | | | - implement find_value() function for UniValue - replace all Array/Value/Object types with UniValues, remove JSON Spirit to UniValue wrapper - remove JSON Spirit sources
* remove JSON Spirit UniValue wrapperJonas Schnelli2015-06-041-1/+0
|
* extend conversion to UniValueJonas Schnelli2015-06-041-0/+1
|
* Convert tree to using univalue. Eliminate all json_spirit uses.Jeff Garzik2015-06-041-0/+1
|
* Merge pull request #5669Wladimir J. van der Laan2015-05-271-0/+1
|\ | | | | | | | | da29ecb Consensus: MOVEONLY: Move CValidationState from main consensus/validation (jtimon) 27afcd8 Consensus: Refactor: Decouple CValidationState from main::AbortNode() (Cory Fields)
| * Consensus: MOVEONLY: Move CValidationState from main consensus/validationjtimon2015-05-151-0/+1
| |
* | Merge pull request #6098Wladimir J. van der Laan2015-05-221-0/+4
|\ \ | | | | | | | | | cc24610 Update Windows resource files (and add one for bitcoin-tx) (Luke Dashjr)
| * | Update Windows resource files (and add one for bitcoin-tx)Luke Dashjr2015-05-221-0/+4
| | |
* | | Merge pull request #6062Wladimir J. van der Laan2015-05-161-1/+1
|\ \ \ | |_|/ |/| | | | | ff7fe8b Fix for correctly including climits on certain platforms {DragonFlyBSD}. (sinetek)