Skip to content

Commit

Permalink
Disable TLS session ticket, unused in WebRTC DTLS
Browse files Browse the repository at this point in the history
  • Loading branch information
lminiero committed Sep 19, 2024
1 parent 504daf5 commit 1970860
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/dtls.c
Original file line number Diff line number Diff line change
Expand Up @@ -470,6 +470,7 @@ gint janus_dtls_srtp_init(const char *server_pem, const char *server_key, const
JANUS_LOG(LOG_FATAL, "Certificate check error (%s)\n", ERR_reason_error_string(ERR_get_error()));
return -6;
}
SSL_CTX_set_options(ssl_ctx, SSL_OP_NO_TICKET);

unsigned int size;
unsigned char fingerprint[EVP_MAX_MD_SIZE];
Expand Down

0 comments on commit 1970860

Please sign in to comment.