diff options
author | Roland Reichwein <mail@reichwein.it> | 2023-01-12 15:31:02 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2023-01-12 15:31:02 +0100 |
commit | 7472e4e8e4897adc90f9e9030bb35ea07ded8b32 (patch) | |
tree | e7fc71f760a8d083c07bf623b69173a2e11eab17 | |
parent | 00ed7df1a09cad8862f2c586347f4f55c99681e5 (diff) |
Remove old, empty http.h+cpp
-rw-r--r-- | http.cpp | 32 | ||||
-rw-r--r-- | http.h | 8 |
2 files changed, 0 insertions, 40 deletions
diff --git a/http.cpp b/http.cpp deleted file mode 100644 index 89f78d7..0000000 --- a/http.cpp +++ /dev/null @@ -1,32 +0,0 @@ -#include "http.h" - -#include <boost/beast/version.hpp> - -#include "server.h" -#include "response.h" -#include "websocket.h" - -#include <boost/beast/version.hpp> -#include <boost/beast/core.hpp> -#include <boost/beast/http.hpp> -#include <boost/asio/dispatch.hpp> -#include <boost/asio/bind_executor.hpp> -#include <boost/asio/ip/tcp.hpp> -#include <boost/asio/strand.hpp> -#include <boost/config.hpp> -#include <algorithm> -#include <cstdlib> -#include <functional> -#include <iostream> -#include <memory> -#include <optional> -#include <string> -#include <thread> -#include <vector> - -namespace beast = boost::beast; // from <boost/beast.hpp> -namespace http = beast::http; // from <boost/beast/http.hpp> -namespace net = boost::asio; // from <boost/asio.hpp> -using tcp = boost::asio::ip::tcp; // from <boost/asio/ip/tcp.hpp> -namespace websocket = beast::websocket; - @@ -1,8 +0,0 @@ -#pragma once - -#include <boost/asio/dispatch.hpp> -#include <boost/asio/strand.hpp> - -#include "config.h" -#include "server.h" - |