This file is indexed.

/usr/include/thunderbird/nsIAbLDAPReplicationData.h is in thunderbird-dev 1:38.6.0+build1-0ubuntu1.

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
/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM ../../../dist/idl/nsIAbLDAPReplicationData.idl
 */

#ifndef __gen_nsIAbLDAPReplicationData_h__
#define __gen_nsIAbLDAPReplicationData_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 nsIAbLDAPDirectory; /* forward declaration */

class nsILDAPConnection; /* forward declaration */

class nsILDAPURL; /* forward declaration */

class nsIAbLDAPReplicationQuery; /* forward declaration */

class nsIWebProgressListener; /* forward declaration */


/* starting interface:    nsIAbLDAPProcessReplicationData */
#define NS_IABLDAPPROCESSREPLICATIONDATA_IID_STR "e628bbc9-8793-4f0b-bce4-990d399b1fca"

#define NS_IABLDAPPROCESSREPLICATIONDATA_IID \
  {0xe628bbc9, 0x8793, 0x4f0b, \
    { 0xbc, 0xe4, 0x99, 0x0d, 0x39, 0x9b, 0x1f, 0xca }}

class NS_NO_VTABLE nsIAbLDAPProcessReplicationData : public nsISupports {
 public: 

  NS_DECLARE_STATIC_IID_ACCESSOR(NS_IABLDAPPROCESSREPLICATIONDATA_IID)

  /* readonly attribute int32_t replicationState; */
  NS_IMETHOD GetReplicationState(int32_t *aReplicationState) = 0;

  enum {
    kIdle = 0,
    kAnonymousBinding = 1,
    kAuthenticatedBinding = 2,
    kSyncServerBinding = 3,
    kSearchingAuthDN = 4,
    kDecidingProtocol = 5,
    kAuthenticating = 6,
    kReplicatingAll = 7,
    kSearchingRootDSE = 8,
    kFindingChanges = 9,
    kReplicatingChanges = 10,
    kReplicationDone = 11
  };

  /* readonly attribute int32_t protocolUsed; */
  NS_IMETHOD GetProtocolUsed(int32_t *aProtocolUsed) = 0;

  enum {
    kDefaultDownloadAll = 0,
    kChangeLogProtocol = 1,
    kLCUPProtocol = 2,
    kLastUpdatedTimeStampMethod = 3
  };

  /* void init (in nsIAbLDAPDirectory directory, in nsILDAPConnection connection, in nsILDAPURL url, in nsIAbLDAPReplicationQuery query, in nsIWebProgressListener progressListener); */
  NS_IMETHOD Init(nsIAbLDAPDirectory *directory, nsILDAPConnection *connection, nsILDAPURL *url, nsIAbLDAPReplicationQuery *query, nsIWebProgressListener *progressListener) = 0;

  /* void abort (); */
  NS_IMETHOD Abort(void) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(nsIAbLDAPProcessReplicationData, NS_IABLDAPPROCESSREPLICATIONDATA_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIABLDAPPROCESSREPLICATIONDATA \
  NS_IMETHOD GetReplicationState(int32_t *aReplicationState) override; \
  NS_IMETHOD GetProtocolUsed(int32_t *aProtocolUsed) override; \
  NS_IMETHOD Init(nsIAbLDAPDirectory *directory, nsILDAPConnection *connection, nsILDAPURL *url, nsIAbLDAPReplicationQuery *query, nsIWebProgressListener *progressListener) override; \
  NS_IMETHOD Abort(void) override; 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIABLDAPPROCESSREPLICATIONDATA(_to) \
  NS_IMETHOD GetReplicationState(int32_t *aReplicationState) override { return _to GetReplicationState(aReplicationState); } \
  NS_IMETHOD GetProtocolUsed(int32_t *aProtocolUsed) override { return _to GetProtocolUsed(aProtocolUsed); } \
  NS_IMETHOD Init(nsIAbLDAPDirectory *directory, nsILDAPConnection *connection, nsILDAPURL *url, nsIAbLDAPReplicationQuery *query, nsIWebProgressListener *progressListener) override { return _to Init(directory, connection, url, query, progressListener); } \
  NS_IMETHOD Abort(void) override { return _to Abort(); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIABLDAPPROCESSREPLICATIONDATA(_to) \
  NS_IMETHOD GetReplicationState(int32_t *aReplicationState) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetReplicationState(aReplicationState); } \
  NS_IMETHOD GetProtocolUsed(int32_t *aProtocolUsed) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetProtocolUsed(aProtocolUsed); } \
  NS_IMETHOD Init(nsIAbLDAPDirectory *directory, nsILDAPConnection *connection, nsILDAPURL *url, nsIAbLDAPReplicationQuery *query, nsIWebProgressListener *progressListener) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Init(directory, connection, url, query, progressListener); } \
  NS_IMETHOD Abort(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Abort(); } 

#if 0
/* Use the code below as a template for the implementation class for this interface. */

/* Header file */
class nsAbLDAPProcessReplicationData : public nsIAbLDAPProcessReplicationData
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSIABLDAPPROCESSREPLICATIONDATA

  nsAbLDAPProcessReplicationData();

private:
  ~nsAbLDAPProcessReplicationData();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS(nsAbLDAPProcessReplicationData, nsIAbLDAPProcessReplicationData)

nsAbLDAPProcessReplicationData::nsAbLDAPProcessReplicationData()
{
  /* member initializers and constructor code */
}

nsAbLDAPProcessReplicationData::~nsAbLDAPProcessReplicationData()
{
  /* destructor code */
}

/* readonly attribute int32_t replicationState; */
NS_IMETHODIMP nsAbLDAPProcessReplicationData::GetReplicationState(int32_t *aReplicationState)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* readonly attribute int32_t protocolUsed; */
NS_IMETHODIMP nsAbLDAPProcessReplicationData::GetProtocolUsed(int32_t *aProtocolUsed)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void init (in nsIAbLDAPDirectory directory, in nsILDAPConnection connection, in nsILDAPURL url, in nsIAbLDAPReplicationQuery query, in nsIWebProgressListener progressListener); */
NS_IMETHODIMP nsAbLDAPProcessReplicationData::Init(nsIAbLDAPDirectory *directory, nsILDAPConnection *connection, nsILDAPURL *url, nsIAbLDAPReplicationQuery *query, nsIWebProgressListener *progressListener)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void abort (); */
NS_IMETHODIMP nsAbLDAPProcessReplicationData::Abort()
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* End of implementation class template. */
#endif


#endif /* __gen_nsIAbLDAPReplicationData_h__ */