/usr/include/firefox/nsISSLStatus.h is in firefox-dev 11.0+build1-0ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /build/buildd/firefox-11.0+build1/build-tree/mozilla/security/manager/ssl/public/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 "3f1fcd83-c5a9-4cd1-a250-7676ca7c7e34"
#define NS_ISSLSTATUS_IID \
{0x3f1fcd83, 0xc5a9, 0x4cd1, \
{ 0xa2, 0x50, 0x76, 0x76, 0xca, 0x7c, 0x7e, 0x34 }}
class NS_NO_VTABLE NS_SCRIPTABLE nsISSLStatus : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISSLSTATUS_IID)
/* readonly attribute nsIX509Cert serverCert; */
NS_SCRIPTABLE NS_IMETHOD GetServerCert(nsIX509Cert * *aServerCert) = 0;
/* readonly attribute string cipherName; */
NS_SCRIPTABLE NS_IMETHOD GetCipherName(char * *aCipherName) = 0;
/* readonly attribute unsigned long keyLength; */
NS_SCRIPTABLE NS_IMETHOD GetKeyLength(PRUint32 *aKeyLength) = 0;
/* readonly attribute unsigned long secretKeyLength; */
NS_SCRIPTABLE NS_IMETHOD GetSecretKeyLength(PRUint32 *aSecretKeyLength) = 0;
/* readonly attribute boolean isDomainMismatch; */
NS_SCRIPTABLE NS_IMETHOD GetIsDomainMismatch(bool *aIsDomainMismatch) = 0;
/* readonly attribute boolean isNotValidAtThisTime; */
NS_SCRIPTABLE NS_IMETHOD GetIsNotValidAtThisTime(bool *aIsNotValidAtThisTime) = 0;
/* readonly attribute boolean isUntrusted; */
NS_SCRIPTABLE NS_IMETHOD GetIsUntrusted(bool *aIsUntrusted) = 0;
/* readonly attribute boolean isExtendedValidation; */
NS_SCRIPTABLE 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_SCRIPTABLE NS_IMETHOD GetServerCert(nsIX509Cert * *aServerCert); \
NS_SCRIPTABLE NS_IMETHOD GetCipherName(char * *aCipherName); \
NS_SCRIPTABLE NS_IMETHOD GetKeyLength(PRUint32 *aKeyLength); \
NS_SCRIPTABLE NS_IMETHOD GetSecretKeyLength(PRUint32 *aSecretKeyLength); \
NS_SCRIPTABLE NS_IMETHOD GetIsDomainMismatch(bool *aIsDomainMismatch); \
NS_SCRIPTABLE NS_IMETHOD GetIsNotValidAtThisTime(bool *aIsNotValidAtThisTime); \
NS_SCRIPTABLE NS_IMETHOD GetIsUntrusted(bool *aIsUntrusted); \
NS_SCRIPTABLE NS_IMETHOD 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_SCRIPTABLE NS_IMETHOD GetServerCert(nsIX509Cert * *aServerCert) { return _to GetServerCert(aServerCert); } \
NS_SCRIPTABLE NS_IMETHOD GetCipherName(char * *aCipherName) { return _to GetCipherName(aCipherName); } \
NS_SCRIPTABLE NS_IMETHOD GetKeyLength(PRUint32 *aKeyLength) { return _to GetKeyLength(aKeyLength); } \
NS_SCRIPTABLE NS_IMETHOD GetSecretKeyLength(PRUint32 *aSecretKeyLength) { return _to GetSecretKeyLength(aSecretKeyLength); } \
NS_SCRIPTABLE NS_IMETHOD GetIsDomainMismatch(bool *aIsDomainMismatch) { return _to GetIsDomainMismatch(aIsDomainMismatch); } \
NS_SCRIPTABLE NS_IMETHOD GetIsNotValidAtThisTime(bool *aIsNotValidAtThisTime) { return _to GetIsNotValidAtThisTime(aIsNotValidAtThisTime); } \
NS_SCRIPTABLE NS_IMETHOD GetIsUntrusted(bool *aIsUntrusted) { return _to GetIsUntrusted(aIsUntrusted); } \
NS_SCRIPTABLE NS_IMETHOD GetIsExtendedValidation(bool *aIsExtendedValidation) { 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_SCRIPTABLE NS_IMETHOD GetServerCert(nsIX509Cert * *aServerCert) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetServerCert(aServerCert); } \
NS_SCRIPTABLE NS_IMETHOD GetCipherName(char * *aCipherName) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCipherName(aCipherName); } \
NS_SCRIPTABLE NS_IMETHOD GetKeyLength(PRUint32 *aKeyLength) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetKeyLength(aKeyLength); } \
NS_SCRIPTABLE NS_IMETHOD GetSecretKeyLength(PRUint32 *aSecretKeyLength) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSecretKeyLength(aSecretKeyLength); } \
NS_SCRIPTABLE NS_IMETHOD GetIsDomainMismatch(bool *aIsDomainMismatch) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsDomainMismatch(aIsDomainMismatch); } \
NS_SCRIPTABLE NS_IMETHOD GetIsNotValidAtThisTime(bool *aIsNotValidAtThisTime) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsNotValidAtThisTime(aIsNotValidAtThisTime); } \
NS_SCRIPTABLE NS_IMETHOD GetIsUntrusted(bool *aIsUntrusted) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsUntrusted(aIsUntrusted); } \
NS_SCRIPTABLE NS_IMETHOD GetIsExtendedValidation(bool *aIsExtendedValidation) { 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_ISUPPORTS1(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 string cipherName; */
NS_IMETHODIMP nsSSLStatus::GetCipherName(char * *aCipherName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned long keyLength; */
NS_IMETHODIMP nsSSLStatus::GetKeyLength(PRUint32 *aKeyLength)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned long secretKeyLength; */
NS_IMETHODIMP nsSSLStatus::GetSecretKeyLength(PRUint32 *aSecretKeyLength)
{
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__ */
|