aboutsummaryrefslogtreecommitdiff
path: root/src/rpc.cpp
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@exmulti.com>2011-06-14 02:05:57 -0700
committerJeff Garzik <jgarzik@exmulti.com>2011-06-14 02:05:57 -0700
commit19ea44208f7c2cf335c654126deb81406036e328 (patch)
treeb3551e39efea8a96cac2513b08a97a040500168d /src/rpc.cpp
parentc02ec542691baff7517a10ab99bec0cead3ad3ee (diff)
parent31f293128177e0f53331ddb3f1f5ea22176bf91c (diff)
downloadbitcoin-19ea44208f7c2cf335c654126deb81406036e328.tar.xz
Merge pull request #226 from jordanlewis/betterheaders
Optimize header dependencies; improve Makefile dependency graph
Diffstat (limited to 'src/rpc.cpp')
-rw-r--r--src/rpc.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/rpc.cpp b/src/rpc.cpp
index 530bef4a43..ad1abe333e 100644
--- a/src/rpc.cpp
+++ b/src/rpc.cpp
@@ -4,12 +4,17 @@
#include "headers.h"
#include "cryptopp/sha.h"
+#include "db.h"
+#include "net.h"
+#include "init.h"
#undef printf
#include <boost/asio.hpp>
#include <boost/iostreams/concepts.hpp>
#include <boost/iostreams/stream.hpp>
+#include <boost/algorithm/string.hpp>
#ifdef USE_SSL
#include <boost/asio/ssl.hpp>
+#include <boost/filesystem/fstream.hpp>
typedef boost::asio::ssl::stream<boost::asio::ip::tcp::socket> SSLStream;
#endif
#include "json/json_spirit_reader_template.h"