This file is indexed.

/usr/include/ace/SSL/SSL_Initializer.h is in libace-ssl-dev 6.0.3+dfsg-0.2.

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
// -*- C++ -*-

//=============================================================================
/**
 *  @file    SSL_Initializer.h
 *
 *  $Id: SSL_Initializer.h 93497 2011-03-07 09:43:36Z vzykov $
 *
 *  @author Vladimir Zykov <vz@prismtech.com>
 */
//=============================================================================

#ifndef ACE_SSL_INITIALIZER_H
#define ACE_SSL_INITIALIZER_H

#include /**/ "ace/pre.h"

#include "SSL_Export.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

#include "ace/Service_Config.h"
#include "ace/Service_Object.h"

ACE_BEGIN_VERSIONED_NAMESPACE_DECL

class ACE_SSL_Export ACE_SSL_Initializer
  : public ACE_Service_Object
{
public:
  /// Used to force the initialization of ACE_SSL.
  static int static_init (void);

  /// Create ACE_SSL_Context singleton.
  virtual int init (int argc, ACE_TCHAR *argv[]);

  /// Do cleanup of SSL library.
  virtual int fini (void);
};

static int ACE_Force_ACE_SSL_Initializer = ACE_SSL_Initializer::static_init ();

ACE_END_VERSIONED_NAMESPACE_DECL

ACE_STATIC_SVC_DECLARE (ACE_SSL_Initializer)
ACE_FACTORY_DECLARE (ACE_SSL, ACE_SSL_Initializer)

#include /**/ "ace/post.h"

#endif  /* ACE_SSL_INITIALIZER_H */