diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2014-08-16 09:08:52 -0700 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2014-08-16 09:08:52 -0700 |
commit | 4f0fcc582eed69e4a45a94c4ef5a4d0e2e31a216 (patch) | |
tree | df37c60c4afb113f3a4fa6efad1a6cb919543e10 /node/RuntimeEnvironment.hpp | |
parent | aa59cfd5458241cecb96409b90ca38058b65b651 (diff) | |
download | infinitytier-4f0fcc582eed69e4a45a94c4ef5a4d0e2e31a216.tar.gz infinitytier-4f0fcc582eed69e4a45a94c4ef5a4d0e2e31a216.zip |
Refactor HttpClient a bit.
Diffstat (limited to 'node/RuntimeEnvironment.hpp')
-rw-r--r-- | node/RuntimeEnvironment.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/node/RuntimeEnvironment.hpp b/node/RuntimeEnvironment.hpp index 78d950ce..21fbc73a 100644 --- a/node/RuntimeEnvironment.hpp +++ b/node/RuntimeEnvironment.hpp @@ -48,6 +48,7 @@ class SocketManager; class AntiRecursion; class EthernetTapFactory; class RoutingTable; +class HttpClient; /** * Holds global state for an instance of ZeroTier::Node @@ -73,6 +74,7 @@ public: routingTable((RoutingTable *)0), log((Logger *)0), prng((CMWC4096 *)0), + http((HttpClient *)0), antiRec((AntiRecursion *)0), mc((Multicaster *)0), sw((Switch *)0), @@ -119,6 +121,7 @@ public: Logger *log; // null if logging is disabled CMWC4096 *prng; + HttpClient *http; AntiRecursion *antiRec; Multicaster *mc; Switch *sw; |