Prevent unauthorized access to the HTTPS server

This commit is contained in:
loki
2019-12-26 22:44:09 +01:00
parent a1f144db61
commit c63029239f
4 changed files with 91 additions and 6 deletions
+4
View File
@@ -10,6 +10,10 @@
#include <mutex>
#include <condition_variable>
#include <string_view>
#define KITTY_DECL_CONSTR(x)\
x(x&&) noexcept = default;\
x&operator=(x&&) noexcept = default;\
x();
#define KITTY_DEFAULT_CONSTR(x)\
x(x&&) noexcept = default;\