This file is indexed.

/usr/include/libtorrent/close_reason.hpp is in libtorrent-rasterbar-dev 1.1.1-1+b1.

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

Copyright (c) 2015-2016, Arvid Norberg
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

    * Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright
      notice, this list of conditions and the following disclaimer in
      the documentation and/or other materials provided with the distribution.
    * Neither the name of the author nor the names of its
      contributors may be used to endorse or promote products derived
      from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.

*/

#ifndef TORRENT_CLOSE_REASON_HPP
#define TORRENT_CLOSE_REASON_HPP

#include "libtorrent/error_code.hpp"

namespace libtorrent
{
	// internal: these are all the reasons to disconnect a peer
	// all reasons caused by the peer sending unexpected data
	// are 256 and up.
	enum close_reason_t
	{
		// no reason specified. Generic close.
		close_no_reason = 0,

		// we're already connected to
		close_duplicate_peer_id,

		// this torrent has been removed, paused or stopped from this client.
		close_torrent_removed,

		// client failed to allocate necessary memory for this peer connection
		close_no_memory,

		// the source port of this peer is blocked
		close_port_blocked,

		// the source IP has been blocked
		close_blocked,

		// both ends of the connection are upload-only. staying connected would
		// be redundant
		close_upload_to_upload,

		// connection was closed because the other end is upload only and does
		// not have any pieces we're interested in
		close_not_interested_upload_only,

		// peer connection timed out (generic timeout)
		close_timeout,

		// the peers have not been interested in each other for a very long time.
		// disconnect
		close_timed_out_interest,

		// the peer has not sent any message in a long time.
		close_timed_out_activity,

		// the peer did not complete the handshake in too long
		close_timed_out_handshake,

		// the peer sent an interested message, but did not send a request
		// after a very long time after being unchoked.
		close_timed_out_request,

		// the encryption mode is blocked
		close_protocol_blocked,

		// the peer was disconnected in the hopes of finding a better peer
		// in the swarm
		close_peer_churn,

		// we have too many peers connected
		close_too_many_connections,

		// we have too many file-descriptors open
		close_too_many_files,

		// the encryption handshake failed
		close_encryption_error = 256,

		// the info hash sent as part of the handshake was not what we expected
		close_invalid_info_hash,

		close_self_connection,

		// the metadata received matched the info-hash, but failed to parse.
		// this is either someone finding a SHA1 collision, or the author of
		// the magnet link creating it from an invalid torrent
		close_invalid_metadata,

		// the advertised metadata size
		close_metadata_too_big,

		// invalid bittorrent messages
		close_message_too_big,
		close_invalid_message_id,
		close_invalid_message,
		close_invalid_piece_message,
		close_invalid_have_message,
		close_invalid_bitfield_message,
		close_invalid_choke_message,
		close_invalid_unchoke_message,
		close_invalid_interested_message,
		close_invalid_not_interested_message,
		close_invalid_request_message,
		close_invalid_reject_message,
		close_invalid_allow_fast_message,
		close_invalid_extended_message,
		close_invalid_cancel_message,
		close_invalid_dht_port_message,
		close_invalid_suggest_message,
		close_invalid_have_all_message,
		close_invalid_dont_have_message,
		close_invalid_have_none_message,
		close_invalid_pex_message,
		close_invalid_metadata_request_message,
		close_invalid_metadata_message,
		close_invalid_metadata_offset,

		// the peer sent a request while being choked
		close_request_when_choked,

		// the peer sent corrupt data
		close_corrupt_pieces,

		close_pex_message_too_big,
		close_pex_too_frequent
	};

	close_reason_t error_to_close_reason(error_code const& ec);
}

#endif