diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-09-01 23:45:10 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-09-01 23:45:10 +0200 |
commit | 1425f020c47b3cbe134f71717299714aead28502 (patch) | |
tree | 47c50413b1bb972617454b100f60c10a4516ca36 /devtools | |
parent | 69627ad410935edf4a74a4d4678105d51a662263 (diff) | |
download | UXP-1425f020c47b3cbe134f71717299714aead28502.tar UXP-1425f020c47b3cbe134f71717299714aead28502.tar.gz UXP-1425f020c47b3cbe134f71717299714aead28502.tar.lz UXP-1425f020c47b3cbe134f71717299714aead28502.tar.xz UXP-1425f020c47b3cbe134f71717299714aead28502.zip |
Remove support for TLS session caches in TLSServerSocket.
This resolves #738
Diffstat (limited to 'devtools')
-rw-r--r-- | devtools/shared/security/socket.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/devtools/shared/security/socket.js b/devtools/shared/security/socket.js index 068a8ea81..9c6f5750a 100644 --- a/devtools/shared/security/socket.js +++ b/devtools/shared/security/socket.js @@ -480,7 +480,6 @@ SocketListener.prototype = { _setAdditionalSocketOptions: Task.async(function* () { if (this.encryption) { this._socket.serverCert = yield cert.local.getOrCreate(); - this._socket.setSessionCache(false); this._socket.setSessionTickets(false); let requestCert = Ci.nsITLSServerSocket.REQUEST_NEVER; this._socket.setRequestClientCertificate(requestCert); |