mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-30 00:14:57 +00:00
Merge pull request #13369 from Chocobo1/msg
Avoid using libtorrent internal functions
This commit is contained in:
commit
1e01147c31
@ -202,26 +202,37 @@ namespace
|
|||||||
|
|
||||||
QString toString(const lt::socket_type_t socketType)
|
QString toString(const lt::socket_type_t socketType)
|
||||||
{
|
{
|
||||||
#if (LIBTORRENT_VERSION_NUM >= 20000)
|
|
||||||
return QString::fromLatin1(lt::socket_type_name(socketType));
|
|
||||||
#else
|
|
||||||
switch (socketType)
|
switch (socketType)
|
||||||
{
|
{
|
||||||
|
#if (LIBTORRENT_VERSION_NUM >= 20000)
|
||||||
|
case lt::socket_type_t::http:
|
||||||
|
return QLatin1String("HTTP");
|
||||||
|
case lt::socket_type_t::http_ssl:
|
||||||
|
return QLatin1String("HTTP_SSL");
|
||||||
|
#endif
|
||||||
case lt::socket_type_t::i2p:
|
case lt::socket_type_t::i2p:
|
||||||
return QLatin1String("I2P");
|
return QLatin1String("I2P");
|
||||||
case lt::socket_type_t::socks5:
|
case lt::socket_type_t::socks5:
|
||||||
return QLatin1String("SOCKS5");
|
return QLatin1String("SOCKS5");
|
||||||
|
#if (LIBTORRENT_VERSION_NUM >= 20000)
|
||||||
|
case lt::socket_type_t::socks5_ssl:
|
||||||
|
return QLatin1String("SOCKS5_SSL");
|
||||||
|
#endif
|
||||||
case lt::socket_type_t::tcp:
|
case lt::socket_type_t::tcp:
|
||||||
return QLatin1String("TCP");
|
return QLatin1String("TCP");
|
||||||
case lt::socket_type_t::tcp_ssl:
|
case lt::socket_type_t::tcp_ssl:
|
||||||
return QLatin1String("TCP_SSL");
|
return QLatin1String("TCP_SSL");
|
||||||
|
#if (LIBTORRENT_VERSION_NUM >= 20000)
|
||||||
|
case lt::socket_type_t::utp:
|
||||||
|
return QLatin1String("UTP");
|
||||||
|
#else
|
||||||
case lt::socket_type_t::udp:
|
case lt::socket_type_t::udp:
|
||||||
return QLatin1String("UDP");
|
return QLatin1String("UDP");
|
||||||
|
#endif
|
||||||
case lt::socket_type_t::utp_ssl:
|
case lt::socket_type_t::utp_ssl:
|
||||||
return QLatin1String("UTP_SSL");
|
return QLatin1String("UTP_SSL");
|
||||||
}
|
}
|
||||||
return QLatin1String("INVALID");
|
return QLatin1String("INVALID");
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
QString toString(const lt::address &address)
|
QString toString(const lt::address &address)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user