aboutsummaryrefslogtreecommitdiff
path: root/src/rpc.cpp
diff options
context:
space:
mode:
authorJeff Garzik <[email protected]>2011-06-14 02:05:57 -0700
committerJeff Garzik <[email protected]>2011-06-14 02:05:57 -0700
commit19ea44208f7c2cf335c654126deb81406036e328 (patch)
treeb3551e39efea8a96cac2513b08a97a040500168d /src/rpc.cpp
parentFormatFullVersion: build fix related to recent translation improvement (diff)
parentOnly include certain boost headers if necessary. (diff)
downloaddiscoin-19ea44208f7c2cf335c654126deb81406036e328.tar.xz
discoin-19ea44208f7c2cf335c654126deb81406036e328.zip
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 530bef4a4..ad1abe333 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"