aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Partially revert f621326: xCXXFLAGSPieter Wuille2012-05-131-6/+9
|
* Merge pull request #1269 from laanwj/2012_05_consoleimprovementsGregory Maxwell2012-05-123-99/+79
|\ | | | | UI console improvements
| * RPC console: don't crash on invalid input exceptionWladimir J. van der Laan2012-05-121-10/+17
| |
| * Convert RPC console to QTextEdit instead of QTableViewWladimir J. van der Laan2012-05-123-89/+62
| | | | | | | | | | | | | | * This allows copy/pasting whole or partial messages * Handle output more consistently in console * No more scrollbars-in-scrollbars: by setting per-pixel scrolling on the table, cells can have any height * Decorations for "request" and "reply" are changed to the txin and txout icons instead of colored squares
* | Fix initialization of inaddr_anyPieter Wuille2012-05-121-1/+2
| |
* | Merge pull request #1266 from Diapolo/tab_to_spaceJeff Garzik2012-05-121-5/+5
|\ \ | |/ |/| convert 4 tabs into 4 x 4 spaces in bitcoinrpc.cpp
| * convert 4 tabs into 4 x 4 spaces in bitcoinrpc.cppPhilip Kaufmann2012-05-121-5/+5
| |
* | Merge pull request #1263 from Diapolo/RPCCon_ClientStartupTimeWladimir J. van der Laan2012-05-124-38/+96
|\ \ | | | | | | GUI: add the client startup time to the debug window...
| * | add the client startup time to the debug window / rename Version label to ↵Philip Kaufmann2012-05-124-38/+96
| | | | | | | | | | | | Client, which is better suiting now / add IBeamCursor for selectable text on the information page / make ">" sign on RPC page untranslatable / re-order XML-file tags to match real GUI element order
* | | Merge pull request #1267 from Diapolo/sendcoinsdialogWladimir J. van der Laan2012-05-121-1/+1
|\ \ \ | |_|/ |/| | add Alt-Shortcut for "Clear All" in sendcoinsdialog.ui
| * | add Alt-Shortcut for "Clear All" in sendcoinsdialog.uiPhilip Kaufmann2012-05-121-1/+1
|/ /
* | Merge pull request #1265 from laanwj/2012_05_fixredundantbuildWladimir J. van der Laan2012-05-121-6/+5
|\ \ | | | | | | Speed up build in Qt creator in common case
| * | Speed up build in Qt creator in common caseWladimir J. van der Laan2012-05-121-6/+5
|/ / | | | | | | | | - Generate *.qm only when needed (and when qmake is run), this avoids a long qrc compile and link step every time - Generate build.h every time, but only trigger link when it changed (like makefile.unix)
* | Merge pull request #1261 from laanwj/2012_05_escapecsvWladimir J. van der Laan2012-05-111-2/+3
|\ \ | | | | | | Properly escape strings when exporting CSV
| * | Properly escape " in strings when exporting CSVWladimir J. van der Laan2012-05-111-2/+3
| |/
* | Merge pull request #1264 from fanquake/masterGregory Maxwell2012-05-111-2/+2
|\ \ | | | | | | Correct Date
| * | Correct DateFordy2012-05-121-1/+1
| | |
| * | Correct DateFordy2012-05-121-1/+1
| | |
* | | Merge pull request #1021 from sipa/ipv6Pieter Wuille2012-05-1114-119/+347
|\ \ \ | | | | | | | | IPv6 node support
| * | | Separate listening sockets, -bind=<addr>Pieter Wuille2012-05-115-92/+140
| | | |
| * | | Keep port information for local addressesPieter Wuille2012-05-113-22/+29
| | | |
| * | | Add -blocknet to prevent connections to a given networkPieter Wuille2012-05-113-4/+36
| | | |
| * | | Use NET_ identifiers in CNetAddr::GetGroup()Pieter Wuille2012-05-111-6/+6
| | | |
| * | | Add -noproxy to circumvent proxy for some networkPieter Wuille2012-05-113-1/+21
| | | |
| * | | Limited relaying/storing of foreign addressesPieter Wuille2012-05-115-4/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Introduce a boolean variable for each "network" (ipv4, ipv6, tor, i2p), and track whether we are likely to able to connect to it. Addresses in "addr" messages outside of our network get limited relaying and are not stored in addrman.
| * | | Preliminary support for Tor/I2P hidden servicesPieter Wuille2012-05-112-1/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are plans to let Bitcoin function as Tor/I2P hidden service. To do so, we could use the established encoding provided by OnionCat and GarliCat (without actually using those tools) to embed Tor/I2P addresses in IPv6. This patch makes these addresses considered routable, so they can travel over the Bitcoin network in 'addr' messages. This will hopefully make it easier to deploy real hidden service support later.
| * | | IPv6 node supportPieter Wuille2012-05-1111-40/+91
| | | | | | | | | | | | | | | | | | | | | | | | This will make bitcoin relay valid routable IPv6 addresses, and when USE_IPV6 is enabled, listen on IPv6 interfaces and attempt connections to IPv6 addresses.
* | | | Merge pull request #1260 from sipa/splitsyncGregory Maxwell2012-05-1116-281/+388
|\ \ \ \ | |_|_|/ |/| | | Split synchronization mechanisms from util.{h,cpp}
| * | | Split synchronization mechanisms from util.{h,cpp}Pieter Wuille2012-05-1114-330/+353
| | | |
| * | | Use polling instead of boost's broken semaphore on OSXPieter Wuille2012-05-111-0/+40
| | | |
| * | | Use semaphores instead of condition variablesPieter Wuille2012-05-113-47/+91
| | |/ | |/|
* | | Merge pull request #1101 from jgarzik/http11Jeff Garzik2012-05-114-40/+103
|\ \ \ | | | | | | | | Multithreaded JSON-RPC with HTTP 1.1 Keep-Alive support
| * | | RPC: Support HTTP/1.0 and HTTP/1.1, including the proper use of keep-alivesDavid Joel Schwartz2012-05-081-12/+38
| | | |
| * | | Support multi-threaded JSON-RPCDavid Joel Schwartz2012-05-084-35/+72
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change internal HTTP JSON-RPC server from single-threaded to thread-per-connection model. The IP filter list is applied prior to starting the thread, which then processes the RPC. A mutex covers the entire RPC operation, because not all RPC operations are thread-safe. [minor modifications by jgarzik, to make change upstream-ready]
* | | | Merge pull request #1255 from sipa/fixversionGregory Maxwell2012-05-111-4/+5
|\ \ \ \ | | | | | | | | | | Fix version numbers of archive builds
| * | | | Fix version numbers of archive buildsPieter Wuille2012-05-111-4/+5
| | | | |
* | | | | Merge pull request #1254 from jgarzik/mempool-loggingJeff Garzik2012-05-111-3/+4
|\ \ \ \ \ | |_|_|/ / |/| | | | CTxMemPool: consolidate two frequently-printed debug.log lines into one
| * | | | CTxMemPool::accept(): do not log FetchInputs failure redundantlyJeff Garzik2012-05-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | FetchInputs already logs failures internally. This commit makes the logging more consistent with other FetchInputs callsites also. Prior to this commit, two log lines were logged for one condition: ERROR: FetchInputs() : de15fde415 mempool Tx prev not found a2c75da227 ERROR: CTxMemPool::accept() : FetchInputs failed de15fde415 After this commit, only one line is logged: ERROR: FetchInputs() : e0507ab2c7 mempool Tx prev not found 9a620262cd
| * | | | CTxMemPool: consolidate two frequently-printed debug.log lines into oneJeff Garzik2012-05-101-2/+3
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, a single TX would trigger two log lines in quick succession, addUnchecked(): size 152 CTxMemPool::accept() : accepted c4cfdd48b7 After this change, only one log line is used: CTxMemPool::accept() : accepted 98885e65db (poolsz 26)
* | | | Merge pull request #1258 from Diapolo/RPCCon_never_0_BlocksWladimir J. van der Laan2012-05-111-1/+2
|\ \ \ \ | | | | | | | | | | GUI RPC Console: if there is no current block number available display N/A on totalBlocks label,...
| * | | | if there is no current block number available display N/A on totalBlocks ↵Philip Kaufmann2012-05-111-1/+2
| | | | | | | | | | | | | | | | | | | | label, instead of 0, which can not ever be true
* | | | | Merge pull request #1259 from Diapolo/GUI_testnet_UXWladimir J. van der Laan2012-05-111-0/+2
|\ \ \ \ \ | | | | | | | | | | | | GUI: allow easier use of the testnet icon
| * | | | | add calls to qApp->setWindowIcon(), to remove the need to set window icons ↵Philip Kaufmann2012-05-111-0/+2
| |/ / / / | | | | | | | | | | | | | | | for testnet with additional calls
* / / / / Add missing #include for GetDataDirWladimir J. van der Laan2012-05-111-0/+1
|/ / / /
* | | | Merge pull request #1251 from Diapolo/transactionview_commentsWladimir J. van der Laan2012-05-111-0/+2
|\ \ \ \ | | | | | | | | | | add 2 comments to transactionview.cpp to ensure no one moves setPlacehol...
| * | | | add 2 comments to transactionview.cpp to ensure no one moves ↵Philip Kaufmann2012-05-101-0/+2
| | | | | | | | | | | | | | | | | | | | setPlaceholderText to the XML file (after this all parts in the code that use setPlaceholderText have this comment
* | | | | Merge pull request #1257 from Diapolo/fix_guiutil_warnWladimir J. van der Laan2012-05-112-4/+4
|\ \ \ \ \ | |_|_|_|/ |/| | | | guiutil.cpp/.h: fix a -Wreorder compiler warning...
| * | | | guiutil.cpp/.h: fix a -Wreorder compiler warning and make constructor for ↵Philip Kaufmann2012-05-112-4/+4
|/ / / / | | | | | | | | | | | | ToolTipToRichTextFilter explicit
* | | | Merge pull request #1247 from Diapolo/Win_open_debug_logfileWladimir J. van der Laan2012-05-115-1/+81
|\ \ \ \ | | | | | | | | | | Windows: open debug.log file via Bitcoin-Qt
| * | | | add code to open (display) debug.log on Windows with the associated ↵Philip Kaufmann2012-05-115-1/+81
|/ / / / | | | | | | | | | | | | application and add a button to the Information page in the Debug console