summaryrefslogtreecommitdiff
path: root/src/network/credentials_manager.hpp
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2017-10-04 21:25:27 +0200
committerlouiz’ <louiz@louiz.org>2017-10-04 21:51:58 +0200
commitc5a02685361b95042d5c2ada58cba851bc1cc37a (patch)
treebc6c7fa63fe490d946c49a8e2e32550fc884fb56 /src/network/credentials_manager.hpp
parent1c3d4f6f5fdf5829e931770523251abe9522914b (diff)
downloadbiboumi-c5a02685361b95042d5c2ada58cba851bc1cc37a.tar.gz
biboumi-c5a02685361b95042d5c2ada58cba851bc1cc37a.tar.bz2
biboumi-c5a02685361b95042d5c2ada58cba851bc1cc37a.tar.xz
biboumi-c5a02685361b95042d5c2ada58cba851bc1cc37a.zip
Explicitely include all needed botan headers
Most importantely, include parsing.h, since read_cfg is not implicitely included anymore in botan 2.3, and that does not compile. Also do not included botan.h anymore, since it’s deprecated in botan 2.3 fix #3296
Diffstat (limited to 'src/network/credentials_manager.hpp')
-rw-r--r--src/network/credentials_manager.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/network/credentials_manager.hpp b/src/network/credentials_manager.hpp
index aa4732a..3a37bdc 100644
--- a/src/network/credentials_manager.hpp
+++ b/src/network/credentials_manager.hpp
@@ -4,7 +4,8 @@
#ifdef BOTAN_FOUND
-#include <botan/botan.h>
+#include <botan/credentials_manager.h>
+#include <botan/certstor.h>
#include <botan/tls_client.h>
class TCPSocketHandler;