diff options
| author | Eric Lombrozo <[email protected]> | 2013-01-07 08:07:51 -0800 |
|---|---|---|
| committer | Eric Lombrozo <[email protected]> | 2013-06-05 20:36:10 -0700 |
| commit | 663224c2324d64134f8587fe77d1d787c0353b20 (patch) | |
| tree | db06935be9f6e57b6478e866b63f72b3a5934d81 /src/init.cpp | |
| parent | Moved unrelated-to-network calls in StartNode and StopNode into init.cpp (diff) | |
| download | discoin-663224c2324d64134f8587fe77d1d787c0353b20.tar.xz discoin-663224c2324d64134f8587fe77d1d787c0353b20.zip | |
Removed net.cpp's dependency on init.h.
Added explicit include of main.h in init.cpp, changed include of init.h to include of main.h in net.cpp.
Added function registration for net.cpp in init.cpp's network initialization.
Removed protocol.cpp's dependency on main.h.
TODO: Remove main.h include in net.cpp.
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 48fd5ae97..1eee4d247 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -3,11 +3,12 @@ // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. +#include "init.h" +#include "main.h" #include "txdb.h" #include "walletdb.h" #include "bitcoinrpc.h" #include "net.h" -#include "init.h" #include "util.h" #include "ui_interface.h" #include "checkpoints.h" @@ -569,6 +570,10 @@ bool AppInit2(boost::thread_group& threadGroup) // ********************************************************* Step 6: network initialization + SetProcessMessagesHandler(ProcessMessages); + SetSendMessagesHandler(SendMessages); + SetStartShutdownHandler(StartShutdown); + int nSocksVersion = GetArg("-socks", 5); if (nSocksVersion != 4 && nSocksVersion != 5) return InitError(strprintf(_("Unknown -socks proxy version requested: %i"), nSocksVersion)); |