aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssl/src/ssl_internal.hrl
diff options
context:
space:
mode:
authorPawel Pikula <[email protected]>2015-10-22 21:02:52 +0200
committerPawel Pikula <[email protected]>2015-10-22 21:02:52 +0200
commit120975c4fcb57ecd14031ac046f483e56a3daa4d (patch)
tree3a57c5921b6d88c9c26dac7c824cf50f611fdb71 /lib/ssl/src/ssl_internal.hrl
parent4f9905824002bebc33c2914669b4c364927cb0ee (diff)
downloadotp-120975c4fcb57ecd14031ac046f483e56a3daa4d.tar.gz
otp-120975c4fcb57ecd14031ac046f483e56a3daa4d.tar.bz2
otp-120975c4fcb57ecd14031ac046f483e56a3daa4d.zip
fix incorrect number of seconds in 24h macro
The previous commit - 7b93f5d8a224a0a076a420294c95a666a763ee60 fixed the macro only in one place.
Diffstat (limited to 'lib/ssl/src/ssl_internal.hrl')
-rw-r--r--lib/ssl/src/ssl_internal.hrl3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/ssl/src/ssl_internal.hrl b/lib/ssl/src/ssl_internal.hrl
index 3851b2bc6e..8c7ed9c0d1 100644
--- a/lib/ssl/src/ssl_internal.hrl
+++ b/lib/ssl/src/ssl_internal.hrl
@@ -78,6 +78,9 @@
-define(ALL_DATAGRAM_SUPPORTED_VERSIONS, ['dtlsv1.2', dtlsv1]).
-define(MIN_DATAGRAM_SUPPORTED_VERSIONS, ['dtlsv1.2', dtlsv1]).
+-define('24H_in_msec', 86400000).
+-define('24H_in_sec', 86400).
+
-record(ssl_options, {
protocol :: tls | dtls,
versions :: [ssl_record:ssl_version()], %% ssl_record:atom_version() in API