aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/tls/asio/asio_includes.h
blob: 494233d55c44f6d485bdf64e067df603d0a05024 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
* TLS Stream Helper
* (C) 2018-2019 Jack Lloyd
*     2018-2019 Hannes Rantzsch, Tim Oesterreich, Rene Meusel
*
* Botan is released under the Simplified BSD License (see license.txt)
*/

#ifndef BOTAN_ASIO_INCLUDES_H_
#define BOTAN_ASIO_INCLUDES_H_

#include <botan/build.h>

#ifdef BOTAN_HAS_BOOST_ASIO

   // We need to define BOOST_ASIO_DISABLE_SERIAL_PORT before any asio imports. Otherwise asio will include <termios.h>,
   // which interferes with Botan's amalgamation by defining macros like 'B0' and 'FF1'.
   #define BOOST_ASIO_DISABLE_SERIAL_PORT
   #include <boost/asio.hpp>
   #include <boost/asio/buffer.hpp>
   #include <boost/asio/coroutine.hpp>
   #include <boost/asio/ip/tcp.hpp>

#endif // BOTAN_HAS_BOOST_ASIO
#endif // BOTAN_ASIO_INCLUDES_H_