2001-03-06 08:00:47 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 15:12:37 +04:00
|
|
|
* 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/. */
|
2001-03-06 08:00:47 +03:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
2014-08-15 22:27:22 +04:00
|
|
|
interface nsIX509CertList;
|
|
|
|
|
2014-10-30 14:50:00 +03:00
|
|
|
[scriptable, uuid(216112d3-28bc-4671-b057-f98cc09ba1ea)]
|
2001-03-06 08:00:47 +03:00
|
|
|
interface nsITransportSecurityInfo : nsISupports {
|
2002-05-17 00:57:37 +04:00
|
|
|
readonly attribute unsigned long securityState;
|
2007-02-17 06:47:28 +03:00
|
|
|
readonly attribute wstring errorMessage;
|
2014-10-30 14:50:00 +03:00
|
|
|
readonly attribute long errorCode; // PRErrorCode
|
2014-08-15 22:27:22 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* If certificate verification failed, this will be the peer certificate
|
|
|
|
* chain provided in the handshake, so it can be used for error reporting.
|
|
|
|
* If verification succeeded, this will be null.
|
|
|
|
*/
|
|
|
|
readonly attribute nsIX509CertList failedCertChain;
|
2001-03-06 08:00:47 +03:00
|
|
|
};
|
|
|
|
|