mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 09:18:42 +09:00
Replace NSS with Pale Moon's
This commit is contained in:
parent
ff1e5e48bf
commit
8c2e376f94
2870 changed files with 1762232 additions and 1374220 deletions
|
|
@ -1,4 +1,5 @@
|
|||
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* vim: set ts=2 et sw=2 tw=80: */
|
||||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
||||
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
|
@ -11,6 +12,7 @@
|
|||
|
||||
struct ScopedDeleteSSL {
|
||||
void operator()(SSLAeadContext* ctx) { SSL_DestroyAead(ctx); }
|
||||
void operator()(SSLMaskingContext* ctx) { SSL_DestroyMaskingContext(ctx); }
|
||||
void operator()(SSLAntiReplayContext* ctx) {
|
||||
SSL_ReleaseAntiReplayContext(ctx);
|
||||
}
|
||||
|
|
@ -33,6 +35,7 @@ struct ScopedMaybeDeleteSSL {
|
|||
|
||||
SCOPED(SSLAeadContext);
|
||||
SCOPED(SSLAntiReplayContext);
|
||||
SCOPED(SSLMaskingContext);
|
||||
SCOPED(SSLResumptionTokenInfo);
|
||||
|
||||
#undef SCOPED
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue