Browse Source

* HTTPProxy.{cpp,h} : move & sort headers

pull/536/head
hagen 9 years ago
parent
commit
225ed5b662
  1. 8
      HTTPProxy.cpp
  2. 7
      HTTPProxy.h

8
HTTPProxy.cpp

@ -3,6 +3,13 @@
#include <boost/lexical_cast.hpp> #include <boost/lexical_cast.hpp>
#include <string> #include <string>
#include <atomic> #include <atomic>
#include <memory>
#include <set>
#include <boost/asio.hpp>
#include <mutex>
#include "I2PService.h"
#include "Destination.h"
#include "HTTPProxy.h" #include "HTTPProxy.h"
#include "util.h" #include "util.h"
#include "Identity.h" #include "Identity.h"
@ -344,6 +351,5 @@ namespace proxy
{ {
return std::make_shared<HTTPProxyHandler> (this, socket); return std::make_shared<HTTPProxyHandler> (this, socket);
} }
} }
} }

7
HTTPProxy.h

@ -1,13 +1,6 @@
#ifndef HTTP_PROXY_H__ #ifndef HTTP_PROXY_H__
#define HTTP_PROXY_H__ #define HTTP_PROXY_H__
#include <memory>
#include <set>
#include <boost/asio.hpp>
#include <mutex>
#include "I2PService.h"
#include "Destination.h"
namespace i2p namespace i2p
{ {
namespace proxy namespace proxy

Loading…
Cancel
Save