premiere-libtorrent/include/libtorrent/close_reason.hpp

157 lines
4.5 KiB
C++
Raw Normal View History

/*
2018-04-09 09:04:33 +02:00
Copyright (c) 2015-2018, 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.
2017-02-04 02:27:31 +01:00
enum class close_reason_t : std::uint16_t
{
// no reason specified. Generic close.
2017-02-04 02:27:31 +01:00
none = 0,
// we're already connected to
2017-02-04 02:27:31 +01:00
duplicate_peer_id,
// this torrent has been removed, paused or stopped from this client.
2017-02-04 02:27:31 +01:00
torrent_removed,
// client failed to allocate necessary memory for this peer connection
2017-02-04 02:27:31 +01:00
no_memory,
// the source port of this peer is blocked
2017-02-04 02:27:31 +01:00
port_blocked,
// the source IP has been blocked
2017-02-04 02:27:31 +01:00
blocked,
// both ends of the connection are upload-only. staying connected would
// be redundant
2017-02-04 02:27:31 +01:00
upload_to_upload,
// connection was closed because the other end is upload only and does
// not have any pieces we're interested in
2017-02-04 02:27:31 +01:00
not_interested_upload_only,
// peer connection timed out (generic timeout)
2017-02-04 02:27:31 +01:00
timeout,
// the peers have not been interested in each other for a very long time.
// disconnect
2017-02-04 02:27:31 +01:00
timed_out_interest,
// the peer has not sent any message in a long time.
2017-02-04 02:27:31 +01:00
timed_out_activity,
// the peer did not complete the handshake in too long
2017-02-04 02:27:31 +01:00
timed_out_handshake,
// the peer sent an interested message, but did not send a request
// after a very long time after being unchoked.
2017-02-04 02:27:31 +01:00
timed_out_request,
// the encryption mode is blocked
2017-02-04 02:27:31 +01:00
protocol_blocked,
// the peer was disconnected in the hopes of finding a better peer
// in the swarm
2017-02-04 02:27:31 +01:00
peer_churn,
// we have too many peers connected
2017-02-04 02:27:31 +01:00
too_many_connections,
// we have too many file-descriptors open
2017-02-04 02:27:31 +01:00
too_many_files,
// the encryption handshake failed
2017-02-04 02:27:31 +01:00
encryption_error = 256,
// the info hash sent as part of the handshake was not what we expected
2017-02-04 02:27:31 +01:00
invalid_info_hash,
2017-02-04 02:27:31 +01:00
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
2017-02-04 02:27:31 +01:00
invalid_metadata,
// the advertised metadata size
2017-02-04 02:27:31 +01:00
metadata_too_big,
// invalid bittorrent messages
2017-02-04 02:27:31 +01:00
message_too_big,
invalid_message_id,
invalid_message,
invalid_piece_message,
invalid_have_message,
invalid_bitfield_message,
invalid_choke_message,
invalid_unchoke_message,
invalid_interested_message,
invalid_not_interested_message,
invalid_request_message,
invalid_reject_message,
invalid_allow_fast_message,
invalid_extended_message,
invalid_cancel_message,
invalid_dht_port_message,
invalid_suggest_message,
invalid_have_all_message,
invalid_dont_have_message,
invalid_have_none_message,
invalid_pex_message,
invalid_metadata_request_message,
invalid_metadata_message,
invalid_metadata_offset,
// the peer sent a request while being choked
2017-02-04 02:27:31 +01:00
request_when_choked,
// the peer sent corrupt data
2017-02-04 02:27:31 +01:00
corrupt_pieces,
2017-02-04 02:27:31 +01:00
pex_message_too_big,
pex_too_frequent
};
close_reason_t error_to_close_reason(error_code const& ec);
}
#endif