diff options
author | Péter Dimitrov <[email protected]> | 2019-02-25 08:53:14 +0100 |
---|---|---|
committer | Péter Dimitrov <[email protected]> | 2019-02-25 08:53:14 +0100 |
commit | b3dbf45fdbe8c584c89b5e061f6e9a28a5d3ea86 (patch) | |
tree | 6461741080ff1980dd2ecc58d21f6a4c86906f12 /lib/ssl/src/dtls_handshake.hrl | |
parent | 731b26b719415057d072546fcdabacf003c9e6c8 (diff) | |
parent | a7a19b03bfde9b44e23c199af5d3ecdf1f9ab996 (diff) | |
download | otp-b3dbf45fdbe8c584c89b5e061f6e9a28a5d3ea86.tar.gz otp-b3dbf45fdbe8c584c89b5e061f6e9a28a5d3ea86.tar.bz2 otp-b3dbf45fdbe8c584c89b5e061f6e9a28a5d3ea86.zip |
Merge branch 'peterdmv/ssl/dtls_logging'
* peterdmv/ssl/dtls_logging:
ssl: Add debug logging for DTLS
Change-Id: I83bf117c6c3428c57010e0e581775dd941fc829a
Diffstat (limited to 'lib/ssl/src/dtls_handshake.hrl')
-rw-r--r-- | lib/ssl/src/dtls_handshake.hrl | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/lib/ssl/src/dtls_handshake.hrl b/lib/ssl/src/dtls_handshake.hrl index dab4038762..de2be1daeb 100644 --- a/lib/ssl/src/dtls_handshake.hrl +++ b/lib/ssl/src/dtls_handshake.hrl @@ -26,23 +26,13 @@ -ifndef(dtls_handshake). -define(dtls_handshake, true). +-include("tls_handshake.hrl"). %% Common TLS and DTLS records and Constantes -include("ssl_handshake.hrl"). %% Common TLS and DTLS records and Constantes -include("ssl_api.hrl"). -define(HELLO_VERIFY_REQUEST, 3). -define(HELLO_VERIFY_REQUEST_VERSION, {254, 255}). --record(client_hello, { - client_version, - random, - session_id, % opaque SessionID<0..32> - cookie, % opaque<2..2^16-1> - cipher_suites, % cipher_suites<2..2^16-1> - compression_methods, % compression_methods<1..2^8-1>, - %% Extensions - extensions - }). - -record(hello_verify_request, { protocol_version, cookie |