dtls.hpp
Go to the documentation of this file.
1 #ifndef DTLS_HPP
2 #define DTLS_HPP
3 
4 #include <common.hpp>
5 #include <cstdint>
6 
7 namespace DTLS {
8 
9 namespace Record {};
10 namespace Handshake {};
11 
12 }; // namespace DTLS
13 
14 /*
15  * YCM definition is a workaround for a libclang bug
16  * When compiling, YCM should never be set.
17  * Set YCM in a libclang based IDE in order to avoid errors
18  */
19 #ifndef YCM
20 #include "dtls_handshake.hpp"
21 #include "dtls_record.hpp"
22 #endif
23 
24 #endif /* DTLS_HPP */
Definition: dtls.hpp:7