Your IP : 216.73.216.48
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsISSLStatus.idl
*/
#ifndef __gen_nsISSLStatus_h__
#define __gen_nsISSLStatus_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIX509Cert; /* forward declaration */
/* starting interface: nsISSLStatus */
#define NS_ISSLSTATUS_IID_STR "fa9ba95b-ca3b-498a-b889-7c79cf28fee8"
#define NS_ISSLSTATUS_IID \
{0xfa9ba95b, 0xca3b, 0x498a, \
{ 0xb8, 0x89, 0x7c, 0x79, 0xcf, 0x28, 0xfe, 0xe8 }}
class NS_NO_VTABLE nsISSLStatus : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISSLSTATUS_IID)
/* readonly attribute nsIX509Cert serverCert; */
NS_IMETHOD GetServerCert(nsIX509Cert * *aServerCert) = 0;
/* readonly attribute ACString cipherName; */
NS_IMETHOD GetCipherName(nsACString & aCipherName) = 0;
/* readonly attribute unsigned long keyLength; */
NS_IMETHOD GetKeyLength(uint32_t *aKeyLength) = 0;
/* readonly attribute unsigned long secretKeyLength; */
NS_IMETHOD GetSecretKeyLength(uint32_t *aSecretKeyLength) = 0;
enum {
SSL_VERSION_3 = 0,
TLS_VERSION_1 = 1,
TLS_VERSION_1_1 = 2,
TLS_VERSION_1_2 = 3
};
/* readonly attribute unsigned short protocolVersion; */
NS_IMETHOD GetProtocolVersion(uint16_t *aProtocolVersion) = 0;
/* readonly attribute boolean isDomainMismatch; */
NS_IMETHOD GetIsDomainMismatch(bool *aIsDomainMismatch) = 0;
/* readonly attribute boolean isNotValidAtThisTime; */
NS_IMETHOD GetIsNotValidAtThisTime(bool *aIsNotValidAtThisTime) = 0;
/* readonly attribute boolean isUntrusted; */
NS_IMETHOD GetIsUntrusted(bool *aIsUntrusted) = 0;
/* readonly attribute boolean isExtendedValidation; */
NS_IMETHOD GetIsExtendedValidation(bool *aIsExtendedValidation) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsISSLStatus, NS_ISSLSTATUS_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSISSLSTATUS \
NS_IMETHOD GetServerCert(nsIX509Cert * *aServerCert) override; \
NS_IMETHOD GetCipherName(nsACString & aCipherName) override; \
NS_IMETHOD GetKeyLength(uint32_t *aKeyLength) override; \
NS_IMETHOD GetSecretKeyLength(uint32_t *aSecretKeyLength) override; \
NS_IMETHOD GetProtocolVersion(uint16_t *aProtocolVersion) override; \
NS_IMETHOD GetIsDomainMismatch(bool *aIsDomainMismatch) override; \
NS_IMETHOD GetIsNotValidAtThisTime(bool *aIsNotValidAtThisTime) override; \
NS_IMETHOD GetIsUntrusted(bool *aIsUntrusted) override; \
NS_IMETHOD GetIsExtendedValidation(bool *aIsExtendedValidation) override;
/* Use this macro when declaring the members of this interface when the
class doesn't implement the interface. This is useful for forwarding. */
#define NS_DECL_NON_VIRTUAL_NSISSLSTATUS \
NS_METHOD GetServerCert(nsIX509Cert * *aServerCert); \
NS_METHOD GetCipherName(nsACString & aCipherName); \
NS_METHOD GetKeyLength(uint32_t *aKeyLength); \
NS_METHOD GetSecretKeyLength(uint32_t *aSecretKeyLength); \
NS_METHOD GetProtocolVersion(uint16_t *aProtocolVersion); \
NS_METHOD GetIsDomainMismatch(bool *aIsDomainMismatch); \
NS_METHOD GetIsNotValidAtThisTime(bool *aIsNotValidAtThisTime); \
NS_METHOD GetIsUntrusted(bool *aIsUntrusted); \
NS_METHOD GetIsExtendedValidation(bool *aIsExtendedValidation);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSISSLSTATUS(_to) \
NS_IMETHOD GetServerCert(nsIX509Cert * *aServerCert) override { return _to GetServerCert(aServerCert); } \
NS_IMETHOD GetCipherName(nsACString & aCipherName) override { return _to GetCipherName(aCipherName); } \
NS_IMETHOD GetKeyLength(uint32_t *aKeyLength) override { return _to GetKeyLength(aKeyLength); } \
NS_IMETHOD GetSecretKeyLength(uint32_t *aSecretKeyLength) override { return _to GetSecretKeyLength(aSecretKeyLength); } \
NS_IMETHOD GetProtocolVersion(uint16_t *aProtocolVersion) override { return _to GetProtocolVersion(aProtocolVersion); } \
NS_IMETHOD GetIsDomainMismatch(bool *aIsDomainMismatch) override { return _to GetIsDomainMismatch(aIsDomainMismatch); } \
NS_IMETHOD GetIsNotValidAtThisTime(bool *aIsNotValidAtThisTime) override { return _to GetIsNotValidAtThisTime(aIsNotValidAtThisTime); } \
NS_IMETHOD GetIsUntrusted(bool *aIsUntrusted) override { return _to GetIsUntrusted(aIsUntrusted); } \
NS_IMETHOD GetIsExtendedValidation(bool *aIsExtendedValidation) override { return _to GetIsExtendedValidation(aIsExtendedValidation); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSISSLSTATUS(_to) \
NS_IMETHOD GetServerCert(nsIX509Cert * *aServerCert) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetServerCert(aServerCert); } \
NS_IMETHOD GetCipherName(nsACString & aCipherName) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCipherName(aCipherName); } \
NS_IMETHOD GetKeyLength(uint32_t *aKeyLength) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetKeyLength(aKeyLength); } \
NS_IMETHOD GetSecretKeyLength(uint32_t *aSecretKeyLength) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSecretKeyLength(aSecretKeyLength); } \
NS_IMETHOD GetProtocolVersion(uint16_t *aProtocolVersion) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetProtocolVersion(aProtocolVersion); } \
NS_IMETHOD GetIsDomainMismatch(bool *aIsDomainMismatch) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsDomainMismatch(aIsDomainMismatch); } \
NS_IMETHOD GetIsNotValidAtThisTime(bool *aIsNotValidAtThisTime) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsNotValidAtThisTime(aIsNotValidAtThisTime); } \
NS_IMETHOD GetIsUntrusted(bool *aIsUntrusted) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsUntrusted(aIsUntrusted); } \
NS_IMETHOD GetIsExtendedValidation(bool *aIsExtendedValidation) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsExtendedValidation(aIsExtendedValidation); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsSSLStatus : public nsISSLStatus
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSISSLSTATUS
nsSSLStatus();
private:
~nsSSLStatus();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsSSLStatus, nsISSLStatus)
nsSSLStatus::nsSSLStatus()
{
/* member initializers and constructor code */
}
nsSSLStatus::~nsSSLStatus()
{
/* destructor code */
}
/* readonly attribute nsIX509Cert serverCert; */
NS_IMETHODIMP nsSSLStatus::GetServerCert(nsIX509Cert * *aServerCert)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute ACString cipherName; */
NS_IMETHODIMP nsSSLStatus::GetCipherName(nsACString & aCipherName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned long keyLength; */
NS_IMETHODIMP nsSSLStatus::GetKeyLength(uint32_t *aKeyLength)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned long secretKeyLength; */
NS_IMETHODIMP nsSSLStatus::GetSecretKeyLength(uint32_t *aSecretKeyLength)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned short protocolVersion; */
NS_IMETHODIMP nsSSLStatus::GetProtocolVersion(uint16_t *aProtocolVersion)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean isDomainMismatch; */
NS_IMETHODIMP nsSSLStatus::GetIsDomainMismatch(bool *aIsDomainMismatch)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean isNotValidAtThisTime; */
NS_IMETHODIMP nsSSLStatus::GetIsNotValidAtThisTime(bool *aIsNotValidAtThisTime)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean isUntrusted; */
NS_IMETHODIMP nsSSLStatus::GetIsUntrusted(bool *aIsUntrusted)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean isExtendedValidation; */
NS_IMETHODIMP nsSSLStatus::GetIsExtendedValidation(bool *aIsExtendedValidation)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsISSLStatus_h__ */