summaryrefslogtreecommitdiffstats
path: root/ssl/d1_lib.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-12-25 14:45:15 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-12-25 14:45:15 +0000
commit7e159e0133d28bec9148446e8f4dd86c0216d819 (patch)
treea5ba445a32046f01da4e5a1346f0f974909cbe60 /ssl/d1_lib.c
parentb9e1488865ae92a4dc4e39faeea6a018db6ac7f4 (diff)
PR: 2535
Submitted by: Robin Seggelmann <seggelmann@fh-muenster.de> Reviewed by: steve Add SCTP support for DTLS (RFC 6083).
Diffstat (limited to 'ssl/d1_lib.c')
-rw-r--r--ssl/d1_lib.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/ssl/d1_lib.c b/ssl/d1_lib.c
index a94290a834..4999f0151b 100644
--- a/ssl/d1_lib.c
+++ b/ssl/d1_lib.c
@@ -292,6 +292,15 @@ const SSL_CIPHER *dtls1_get_cipher(unsigned int u)
void dtls1_start_timer(SSL *s)
{
+#ifndef OPENSSL_NO_SCTP
+ /* Disable timer for SCTP */
+ if (BIO_dgram_is_sctp(SSL_get_wbio(s)))
+ {
+ memset(&(s->d1->next_timeout), 0, sizeof(struct timeval));
+ return;
+ }
+#endif
+
/* If timer is not set, initialize duration with 1 second */
if (s->d1->next_timeout.tv_sec == 0 && s->d1->next_timeout.tv_usec == 0)
{