2003-12-22 08:14:35 +01:00
|
|
|
/*
|
|
|
|
|
2018-04-09 09:04:33 +02:00
|
|
|
Copyright (c) 2003-2018, Arvid Norberg
|
2003-12-22 08:14:35 +01:00
|
|
|
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_IDENTIFY_CLIENT_HPP_INCLUDED
|
|
|
|
#define TORRENT_IDENTIFY_CLIENT_HPP_INCLUDED
|
|
|
|
|
2015-05-23 03:38:47 +02:00
|
|
|
#include "libtorrent/config.hpp"
|
|
|
|
|
2018-04-26 09:01:14 +02:00
|
|
|
#if TORRENT_ABI_VERSION == 1
|
2015-04-21 03:16:28 +02:00
|
|
|
#include "libtorrent/aux_/disable_warnings_push.hpp"
|
2006-05-21 17:35:11 +02:00
|
|
|
#include <boost/optional.hpp>
|
2015-04-21 03:16:28 +02:00
|
|
|
#include "libtorrent/aux_/disable_warnings_pop.hpp"
|
2016-10-25 14:03:26 +02:00
|
|
|
#endif
|
2006-05-21 17:35:11 +02:00
|
|
|
|
2003-12-22 08:14:35 +01:00
|
|
|
#include "libtorrent/peer_id.hpp"
|
2006-05-15 00:30:05 +02:00
|
|
|
#include "libtorrent/fingerprint.hpp"
|
2003-12-22 08:14:35 +01:00
|
|
|
|
2016-10-25 14:03:26 +02:00
|
|
|
// TODO: hide this declaration when deprecated functions are disabled, and
|
|
|
|
// remove its internal use
|
2017-04-12 19:00:57 +02:00
|
|
|
namespace libtorrent {
|
|
|
|
|
2017-06-09 21:30:36 +02:00
|
|
|
namespace aux {
|
|
|
|
|
|
|
|
TORRENT_EXTRA_EXPORT
|
|
|
|
std::string identify_client_impl(const peer_id& p);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-05-23 03:38:47 +02:00
|
|
|
// these functions don't really need to be public. This mechanism of
|
|
|
|
// advertising client software and version is also out-dated.
|
|
|
|
|
2014-04-28 06:46:33 +02:00
|
|
|
// This function can can be used to extract a string describing a client
|
|
|
|
// version from its peer-id. It will recognize most clients that have this
|
|
|
|
// kind of identification in the peer-id.
|
2017-06-09 21:30:36 +02:00
|
|
|
TORRENT_DEPRECATED_EXPORT
|
2015-05-30 23:46:59 +02:00
|
|
|
std::string identify_client(const peer_id& p);
|
2013-08-08 03:03:54 +02:00
|
|
|
|
2018-04-26 09:01:14 +02:00
|
|
|
#if TORRENT_ABI_VERSION == 1
|
2016-10-25 14:03:26 +02:00
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#endif
|
|
|
|
#ifdef __clang__
|
|
|
|
#pragma clang diagnostic push
|
|
|
|
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
2016-10-28 00:09:15 +02:00
|
|
|
#endif
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(push, 1)
|
|
|
|
#pragma warning(disable: 4996)
|
2016-10-25 14:03:26 +02:00
|
|
|
#endif
|
2014-04-28 06:46:33 +02:00
|
|
|
// Returns an optional fingerprint if any can be identified from the peer
|
|
|
|
// id. This can be used to automate the identification of clients. It will
|
|
|
|
// not be able to identify peers with non- standard encodings. Only Azureus
|
|
|
|
// style, Shadow's style and Mainline style.
|
2015-05-30 23:46:59 +02:00
|
|
|
TORRENT_DEPRECATED_EXPORT TORRENT_DEPRECATED
|
|
|
|
boost::optional<fingerprint>
|
|
|
|
client_fingerprint(peer_id const& p);
|
2015-07-28 00:33:36 +02:00
|
|
|
|
2016-10-25 14:03:26 +02:00
|
|
|
#ifdef __GNUC__
|
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
#endif
|
|
|
|
#ifdef __clang__
|
|
|
|
#pragma clang diagnostic pop
|
|
|
|
#endif
|
2016-10-28 00:09:15 +02:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
2016-10-25 14:03:26 +02:00
|
|
|
|
2018-04-26 09:01:14 +02:00
|
|
|
#endif // TORRENT_ABI_VERSION
|
2016-10-25 14:03:26 +02:00
|
|
|
|
2003-12-22 08:14:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TORRENT_IDENTIFY_CLIENT_HPP_INCLUDED
|