diff options
Diffstat (limited to 'lib/ssl/src/tls_connection.hrl')
-rw-r--r-- | lib/ssl/src/tls_connection.hrl | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/ssl/src/tls_connection.hrl b/lib/ssl/src/tls_connection.hrl index f802f2afa9..2beecbb84d 100644 --- a/lib/ssl/src/tls_connection.hrl +++ b/lib/ssl/src/tls_connection.hrl @@ -26,12 +26,13 @@ -define(tls_connection, true). -include("ssl_connection.hrl"). +-include("tls_record.hrl"). -record(protocol_buffers, { - tls_packets = [] :: [binary()], % Not yet handled decode SSL/TLS packets. - tls_record_buffer = <<>> :: binary(), % Buffer of incomplete records - tls_handshake_buffer = <<>> :: binary(), % Buffer of incomplete handshakes - tls_cipher_texts = [] :: [binary()] + tls_packets = [], %% :: [#ssl_tls{}], % Not yet handled decode SSL/TLS packets. + tls_record_buffer = <<>>, %% :: binary(), % Buffer of incomplete records + tls_handshake_buffer = <<>>, %% :: binary(), % Buffer of incomplete handshakes + tls_cipher_texts = [] %%:: [binary()] }). -endif. % -ifdef(tls_connection). |