aboutsummaryrefslogtreecommitdiff
path: root/src/rpc.cpp
diff options
context:
space:
mode:
authorJordan Lewis <jordanthelewis@gmail.com>2011-05-15 22:45:35 -0500
committerJordan Lewis <jordanthelewis@gmail.com>2011-05-17 18:58:47 -0500
commit31f293128177e0f53331ddb3f1f5ea22176bf91c (patch)
treef19f5b6a1fd422bce824e07afb9667a04e71f48f /src/rpc.cpp
parent6b783965c4c9dbce3c782f3f70b7b6342b7e56da (diff)
downloadbitcoin-31f293128177e0f53331ddb3f1f5ea22176bf91c.tar.xz
Only include certain boost headers if necessary.
Diffstat (limited to 'src/rpc.cpp')
-rw-r--r--src/rpc.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rpc.cpp b/src/rpc.cpp
index 8731b6d57e..b05a13e23b 100644
--- a/src/rpc.cpp
+++ b/src/rpc.cpp
@@ -11,8 +11,10 @@
#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"