This file is indexed.

/usr/include/botan-1.10/botan/tls_connection.h is in libbotan1.10-dev 1.10.5-1ubuntu1.

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
/*
* TLS Connection
* (C) 2004-2006 Jack Lloyd
*
* Released under the terms of the Botan license
*/

#ifndef BOTAN_TLS_CONNECTION_H__
#define BOTAN_TLS_CONNECTION_H__

#include <botan/x509cert.h>
#include <vector>

namespace Botan {

/**
* TLS Connection
*/
class BOTAN_DLL TLS_Connection
   {
   public:
      virtual size_t read(byte[], size_t) = 0;
      virtual void write(const byte[], size_t) = 0;
      size_t read(byte& in) { return read(&in, 1); }
      void write(byte out) { write(&out, 1); }

      virtual std::vector<X509_Certificate> peer_cert_chain() const = 0;

      virtual void close() = 0;

      virtual ~TLS_Connection() {}
   };

}

#endif