summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/util/client_https.hpp2
-rw-r--r--src/lib/util/client_wss.hpp2
-rw-r--r--src/lib/util/server_http_impl.hpp2
-rw-r--r--src/lib/util/server_https.hpp2
-rw-r--r--src/lib/util/server_ws_impl.hpp2
-rw-r--r--src/lib/util/server_wss.hpp2
6 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/util/client_https.hpp b/src/lib/util/client_https.hpp
index 3300ea6865f..835a7ee613d 100644
--- a/src/lib/util/client_https.hpp
+++ b/src/lib/util/client_https.hpp
@@ -4,7 +4,7 @@
#define CLIENT_HTTPS_HPP
#include "client_http.hpp"
-#include "asio/ssl.hpp"
+#include <asio/ssl.hpp>
namespace webpp {
using HTTPS = asio::ssl::stream<asio::ip::tcp::socket>;
diff --git a/src/lib/util/client_wss.hpp b/src/lib/util/client_wss.hpp
index ef30b459607..6ff51658f30 100644
--- a/src/lib/util/client_wss.hpp
+++ b/src/lib/util/client_wss.hpp
@@ -4,7 +4,7 @@
#define CLIENT_WSS_HPP
#include "client_ws.hpp"
-#include "asio/ssl.hpp"
+#include <asio/ssl.hpp>
namespace webpp {
using WSS = asio::ssl::stream<asio::ip::tcp::socket>;
diff --git a/src/lib/util/server_http_impl.hpp b/src/lib/util/server_http_impl.hpp
index 4f909c023ef..e949e6b2483 100644
--- a/src/lib/util/server_http_impl.hpp
+++ b/src/lib/util/server_http_impl.hpp
@@ -9,7 +9,7 @@
#include "server_http.hpp"
#include "asio.h"
-#include "asio/system_timer.hpp"
+#include <asio/system_timer.hpp>
#include "path_to_regex.hpp"
#include <map>
diff --git a/src/lib/util/server_https.hpp b/src/lib/util/server_https.hpp
index e721cbb3e25..d76aa377762 100644
--- a/src/lib/util/server_https.hpp
+++ b/src/lib/util/server_https.hpp
@@ -4,7 +4,7 @@
#define SERVER_HTTPS_HPP
#include "server_http.hpp"
-#include "asio/ssl.hpp"
+#include <asio/ssl.hpp>
#include <openssl/ssl.h>
#include <algorithm>
diff --git a/src/lib/util/server_ws_impl.hpp b/src/lib/util/server_ws_impl.hpp
index cbb6f9b4908..9fc5876cab2 100644
--- a/src/lib/util/server_ws_impl.hpp
+++ b/src/lib/util/server_ws_impl.hpp
@@ -6,7 +6,7 @@
#include "crypto.hpp"
#include "asio.h"
-#include "asio/system_timer.hpp"
+#include <asio/system_timer.hpp>
#include "server_ws.hpp"
#include <unordered_map>
diff --git a/src/lib/util/server_wss.hpp b/src/lib/util/server_wss.hpp
index ecf46fb1524..ea0bc47626e 100644
--- a/src/lib/util/server_wss.hpp
+++ b/src/lib/util/server_wss.hpp
@@ -4,7 +4,7 @@
#define SERVER_WSS_HPP
#include "server_ws.hpp"
-#include "asio/ssl.hpp"
+#include <asio/ssl.hpp>
#include <openssl/ssl.h>
#include <algorithm>