aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-06-29RPC: add 'getpeerinfo', returning easy-to-retrieve per-CNode dataJeff Garzik
2012-06-28Create new rpcnet module, and move 'getconnectioncount' RPC to itJeff Garzik
2012-06-28Merge branch 'patch-5' of https://github.com/xanatos/bitcoinGavin Andresen
2012-06-28Merge branch 'patch-3' of https://github.com/xanatos/bitcoinGavin Andresen
2012-06-28Fix build error.Matt Corallo
2012-06-28Lock vnThreadsRunning[THREAD_RPCHANDLER].Matt Corallo
2012-06-28Use a rpc-specific queue to tell asio connections to shutdown.Matt Corallo
2012-06-28Revert "*Always* send a shutdown signal to enable custom shutdown actions"Matt Corallo
This reverts commit 896899e0d66e25f6549a92749d237c8a87b12f08.
2012-06-27Merge pull request #1511 from jgarzik/quieten2Jeff Garzik
Quieten 'getdata' P2P message output
2012-06-27Merge pull request #1347 from rebroad/FixAlreadyAskedForPieter Wuille
mapAlreadyAskedFor gets additions when AlreadyHave()
2012-06-27Merge pull request #973 from TheBlueMatt/diffsendbufferPieter Wuille
Stop processing messages on full send buffer and dont disconnect.
2012-06-27Merge pull request #457 from muggenhor/async-ipv6-rpcPieter Wuille
IPv6 RPC using asynchronously accepted connections
2012-06-27Stop processing messages on full send buffer and dont disconnect.Matt Corallo
Also decrease default send/receive buffer sizes from 10 to 5 mb as this patch makes it easy for a node to fill both instead of only send.
2012-06-27Merge pull request #1519 from Diapolo/GUI_locale_selectionWladimir J. van der Laan
GUI: change language selection format to "language - country (locale name)"
2012-06-27Merge pull request #1516 from Diapolo/GUI_projectfileWladimir J. van der Laan
small updates to Bitcoin-Qt project file
2012-06-26GUI: change language selection formatPhilip Kaufmann
- display as "language - country (locale name)", when locale name consists of 2 parts - display as "language (locale name)", when locale name consists of 1 part
2012-06-25Merge pull request #1520 from TheBlueMatt/debianJeff Garzik
Update contrib/debian and remove system json_spirit patch.
2012-06-25Update contrib/debian and remove system json_spirit patch.Matt Corallo
That patch has been broken for a long, long time (forever?) and doesn't make sense.
2012-06-25small updates to Bitcoin-Qt project filePhilip Kaufmann
- add noui.cpp to SOURCES (to see / edit the file) - re-word a comment and remove a space
2012-06-25Merge pull request #1501 from fanquake/masterWladimir J. van der Laan
QT to Qt
2012-06-25Checkpoint at block 185333 (and remove a couple of intermediate checkpoints)Gavin Andresen
2012-06-25Add Bitcoin dev CopyrightMichael Ford
2012-06-25Update commentsMichael Ford
2012-06-24Merge pull request #1517 from Diapolo/fix_commentPieter Wuille
fix a comment to correctly use -upgradewallet
2012-06-24fix a comment to correctly use -upgradewalletPhilip Kaufmann
2012-06-24Document -debugnet option in command line help.Jeff Garzik
Fixes #1507
2012-06-24On Windows link with `mswsock`, it being required (indirectly) by RPC codeGiel van Schijndel
Signed-off-by: Giel van Schijndel <me@mortis.eu>
2012-06-24Cancel outstanding listen ops for RPC when shutting downGiel van Schijndel
Use Boost's signal2 slot tracking mechanism to cancel any (still open) listening sockets when receiving a shutdown signal. Signed-off-by: Giel van Schijndel <me@mortis.eu>
2012-06-24Merge branch 'master' into async-ipv6-rpcGiel van Schijndel
2012-06-23Merge pull request #1174 from sipa/torhsGregory Maxwell
Tor hidden service support
2012-06-23Merge pull request #1503 from gmaxwell/testnet_tweaksGregory Maxwell
Remove some rule differences which aren't needed with testnet3.
2012-06-23Quieten 'getdata' P2P message outputJeff Garzik
Output one message per getdata, not one message per 'inv' entry.
2012-06-23Changed a comment about a QVariant typexanatos
2012-06-23Some documentation about torPieter Wuille
2012-06-23Debug version messagesPieter Wuille
2012-06-23Add -tor and related configurationPieter Wuille
2012-06-23Rewrite CNetAddr::GetReachabilityFrom()Pieter Wuille
Add support for Tor/I2P networks, and make code more readable.
2012-06-23Node support for Tor hidden servicesPieter Wuille
This commit adds support for .onion addresses (mapped into the IPv6 by using OnionCat's range and encoding), and the ability to connect to them via a SOCKS5 proxy.
2012-06-22Merge pull request #1458 from jgarzik/tracenetJeff Garzik
Introduce -tracenet option, thereby quieting some redundant debug messages
2012-06-22Introduce -debugnet option, thereby quieting some redundant debug messagesJeff Garzik
Prior to this change, each TX typically generated 3+ debug messages, askfor tx 8644cc97480ba1537214 0 sending getdata: tx 8644cc97480ba1537214 askfor tx 8644cc97480ba1537214 1339640761000000 askfor tx 8644cc97480ba1537214 1339640881000000 CTxMemPool::accept() : accepted 8644cc9748 (poolsz 6857) After this change, there is only one message for each valid TX received CTxMemPool::accept() : accepted 22a73c5d8c (poolsz 42) and two messages for each orphan tx received ERROR: FetchInputs() : 673dc195aa mempool Tx prev not found 1e439346fc stored orphan tx 673dc195aa (mapsz 19) The -debugnet option, or its superset -debug, will restore the full debug output.
2012-06-22Merge pull request #1502 from jgarzik/getrawmempoolJeff Garzik
RPC: add 'getrawmempool', listing all transaction ids in memory pool
2012-06-22Remove some rule differences which aren't needed with testnet3.Gregory Maxwell
Bip16 and Bip30 had early activation dates for testnet, but with the reset they might as well use the same dates as the main network.
2012-06-22RPC: add 'getrawmempool', listing all transaction ids in memory poolJeff Garzik
2012-06-22Merge pull request #1495 from Diapolo/fix_CKey_mem_leakGregory Maxwell
fix a memory leak in key.cpp
2012-06-22Unit tests for base32 encode/decodePieter Wuille
2012-06-22Base32 encoding/decodingPieter Wuille
2012-06-22Small fix to rpc_testsxanatos
2012-06-21Merge pull request #1490 from luke-jr/gd_ljr_keyGregory Maxwell
gitian-downloader: Update luke-jr's key
2012-06-21Merge pull request #1496 from xanatos/patch-2Gavin Andresen
= instead of == in multisig_tests.cpp
2012-06-21= instead of == in multisig_tests.cppxanatos