aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Corrected grammar. As per Principle Of Least Surprise.R E Broadley2012-05-171-1/+1
| |/
* / CAddrDB: Replace BDB-managed addr.dat with internally managed peers.datJeff Garzik2012-05-161-3/+9
|/
* Do not listen on blocked networksPieter Wuille2012-05-141-2/+4
|
* Allow binding to the any address, and report failurePieter Wuille2012-05-141-3/+3
|
* -onlynet instead of -blocknetPieter Wuille2012-05-141-5/+11
|
* Move help message out of AppInit2Wladimir J. van der Laan2012-05-131-129/+126
| | | | | | | - Solves #1278, attempts to address #1049 - Removes \t's from help message that are removed afterwards anyway - Moves UI-specific command-line options help to UI code - Moves "-detachdb" out of #ifdef USE_UPNP
* Merge pull request #1285 from sipa/initerrorPieter Wuille2012-05-131-34/+37
|\ | | | | Improve error reporting at startup
| * Improve error reporting at startupPieter Wuille2012-05-131-34/+37
| |
* | Move GetStartOnSystemStartup and SetStartOnSystemStartup to GUI codeWladimir J. van der Laan2012-05-131-5/+0
|/
* Merge pull request #1277 from Diapolo/IPv6_IPv4_stringsJeff Garzik2012-05-121-2/+2
|\ | | | | use "IPv6" and "IPv4" in strings as these are the official spellings
| * use "IPv6" and "IPv4" in strings as these are the official spellings and ↵Philip Kaufmann2012-05-131-2/+2
| | | | | | | | make ParseNetwork() in netbase.cpp case-insensitive
* | Take -port into account when resolving -bind'sPieter Wuille2012-05-131-4/+4
|/
* Fix initialization of inaddr_anyPieter Wuille2012-05-121-1/+2
|
* Separate listening sockets, -bind=<addr>Pieter Wuille2012-05-111-5/+31
|
* Add -blocknet to prevent connections to a given networkPieter Wuille2012-05-111-0/+12
|
* Add -noproxy to circumvent proxy for some networkPieter Wuille2012-05-111-0/+13
|
* Merge branch 'tmp-ipv6' into merge-ipv6Jeff Garzik2012-05-081-13/+23
|\
| * Added -externalip and -discoverPieter Wuille2012-05-041-0/+12
| | | | | | | | | | | | -externalip=<ip> can be used to explicitly set the public IP address of your node. -discover=0 can be used to disable the automatic public IP discovery system.
| * Add -seednode connections, and use this for -dnsseed + -proxydnsPieter Wuille2012-05-041-1/+5
| |
| * Support connecting by hostnames passed to proxy (-proxydns)Pieter Wuille2012-05-041-14/+7
| |
| * SOCKS5 support by defaultPieter Wuille2012-05-041-1/+2
| | | | | | | | | | Add -socks=<n> to select SOCKS version to use. 4 and 5 are supported, 5 is default.
* | Merge pull request #883 from sipa/loadblockGregory Maxwell2012-05-081-1/+12
|\ \ | |/ |/| Add -loadblock to load from an external blk000?.dat file
| * -loadblock to load from an external blk000?.dat filePieter Wuille2012-04-221-1/+12
| |
* | remove references to bitcoin-wx from comment in init.cppPhilip Kaufmann2012-05-011-2/+2
| |
* | Make lsn_reset ("detach databases") optional and off by default.Pieter Wuille2012-04-261-0/+2
| | | | | | | | | | | | | | | | | | | | Add an option -detachdb (and entry in OptionDialog), without which no lsn_reset is called on addr.dat and blkindex.dat. That means these files cannot be moved to a new environment, but shutdown can be significantly faster. The wallet file is always lsn_reset'ed. -detachdb corresponds to the old behaviour, though it is off by default now to speed up shutdowns.
* | Make GetDataDir return absolute pathsPieter Wuille2012-04-221-1/+2
|/
* Added ability to respond to signals during Block Loading stage.R E Broadley2012-04-181-0/+9
|
* Further reduce header dependenciesPieter Wuille2012-04-171-1/+0
| | | | | | | This commit removes the dependency of serialize.h on PROTOCOL_VERSION, and makes this parameter required instead of implicit. This is much saner, as it makes the places where changing a version number can have an influence obvious.
* Move CWalletDB code to new walletdb module.Jeff Garzik2012-04-171-0/+1
| | | | | In addition to standard code separation, this change opens the door to fixing several include inter-dependencies.
* Remove headers.hPieter Wuille2012-04-171-145/+4
|
* Use filesystem::path instead of manual string tinkeringPieter Wuille2012-04-111-21/+15
| | | | | | | | | | | | | | Where possible, use boost::filesystem::path instead of std::string or char* for filenames. This avoids a lot of manual string tinkering, in favor of path::operator/. GetDataDir is also reworked significantly, it now only keeps two cached directory names (the network-specific data dir, and the root data dir), which are decided through a parameter instead of pre-initialized global variables. Finally, remove the "upgrade from 0.1.5" case where a debug.log in the current directory has to be removed.
* Merge pull request #1054 from sipa/buildinfoPieter Wuille2012-04-101-1/+1
|\ | | | | Build identification strings
| * Build identification stringsPieter Wuille2012-04-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All client version information is moved to version.cpp, which optionally (-DHAVE_BUILD_INFO) includes build.h. build.h is automatically generated on supporting platforms via contrib/genbuild.sh, using git describe. The git export-subst attribute is used to put the commit id statically in version.cpp inside generated archives, and this value is used if no build.h is present. The gitian descriptors are modified to use git archive instead of a copy, to create the src/ directory in the output. This way, src/src/version.cpp will contain the static commit id. To prevent gitian builds from getting the "-dirty" marker in their git-describe generated identifiers, no touching of files or running sed on the makefile is performed anymore. This does not seem to influence determinism.
* | Use scoped locks instead of CRITICAL_BLOCKPieter Wuille2012-04-091-3/+6
|/
* Flush on log size instead of transaction countPieter Wuille2012-04-051-0/+1
|
* Remove USE_SSL #defineGavin Andresen2012-04-041-2/+0
|
* qtui.h/noui.h interface cleanupWladimir J. van der Laan2012-04-041-9/+9
| | | | | | | - rename wxMessageBox, remove redundant arguments to noui/qtui calls - also, add flag to force blocking, modal dialog box for disk space warning etc - clarify function naming - no more special MessageBox needed from AppInit2, as window object is created before calling AppInit2
* move QT_PLUGINS stuff to qt main file, where it belongsWladimir J. van der Laan2012-04-041-11/+0
|
* VC2010 compile fixesWladimir J. van der Laan2012-04-031-0/+4
|
* Introduce explicit -walletupgrade optionPieter Wuille2012-03-221-0/+31
| | | | | | | | | | | | | | Do not automatically change the wallet format unless the user takes an explicit action that implies an upgrade (encrypting, for now), or uses -walletupgrade. -walletupgrade optionally takes an integer argument: the client version up to which upgrading is allowed. Without an argument, it is upgraded to latest supported version. If an argument to -walletupgrade is provided at the time the wallet is created, the new wallet will initially not use features beyond that version. Third, the current wallet version number is reported in getinfo.
* Merge branch 'checklevel' of https://github.com/sipa/bitcoinGavin Andresen2012-03-221-1/+3
|\
| * Add -checklevel and improve -checkblocksPieter Wuille2012-03-221-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -checkblocks now takes a numeric argument: the number of blocks that must be verified at the end of the chain. Default is 2500, and 0 means all blocks. -checklevel specifies how thorough the verification must be: 0: only check whether the block exists on disk 1: verify block validity (default) 2: verify transaction index validity 3: check transaction hashes 4: check whether spent txouts were spent within the main chain 5: check whether all prevouts are marked spent 6: check whether spent txouts were spent by a valid transaction that consumes them
* | Merge branch 'addrman' of https://github.com/sipa/bitcoinGavin Andresen2012-03-221-1/+1
|\ \
| * | CAddrMan: stochastic address managerPieter Wuille2012-02-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Design goals: * Only keep a limited number of addresses around, so that addr.dat does not grow without bound. * Keep the address tables in-memory, and occasionally write the table to addr.dat. * Make sure no (localized) attacker can fill the entire table with his nodes/addresses. See comments in addrman.h for more detailed information.
* | | Merge pull request #964 from sipa/fastblocksGavin Andresen2012-03-221-0/+1
|\ \ \ | | | | | | | | Speed up block downloading
| * | | Speed up block downloadingPieter Wuille2012-03-211-0/+1
| | |/ | |/|
* / | Remove -bip16 and -paytoscripthashtime command-line argumentsGavin Andresen2012-03-211-18/+5
|/ /
* | Print wallet load errors (to debug.log)Luke Dashjr2012-03-111-0/+2
| |
* | Move BIP16 switchover time to April 1Gavin Andresen2012-02-271-1/+1
| |
* | Reworked QT settingsGavin Andresen2012-02-261-17/+5
| |