forked from premiere/premiere-libtorrent
more shared link issues
This commit is contained in:
parent
bd881ac154
commit
da5a18cc04
|
@ -125,7 +125,7 @@ namespace libtorrent
|
|||
// 42 1 1 on_parole, banned, added_to_dht
|
||||
// 43 1 1 <padding>
|
||||
// 44
|
||||
struct peer
|
||||
struct TORRENT_EXPORT peer
|
||||
{
|
||||
peer();
|
||||
peer(boost::uint16_t port, bool connectable, int src);
|
||||
|
@ -267,7 +267,7 @@ namespace libtorrent
|
|||
#endif
|
||||
};
|
||||
|
||||
struct ipv4_peer : peer
|
||||
struct TORRENT_EXPORT ipv4_peer : peer
|
||||
{
|
||||
ipv4_peer(tcp::endpoint const& ip, bool connectable, int src);
|
||||
ipv4_peer(libtorrent::address const& a);
|
||||
|
@ -276,7 +276,7 @@ namespace libtorrent
|
|||
};
|
||||
|
||||
#if TORRENT_USE_I2P
|
||||
struct i2p_peer : peer
|
||||
struct TORRENT_EXPORT i2p_peer : peer
|
||||
{
|
||||
i2p_peer(char const* destination, bool connectable, int src);
|
||||
i2p_peer(char const* destination);
|
||||
|
@ -287,7 +287,7 @@ namespace libtorrent
|
|||
#endif
|
||||
|
||||
#if TORRENT_USE_IPV6
|
||||
struct ipv6_peer : peer
|
||||
struct TORRENT_EXPORT ipv6_peer : peer
|
||||
{
|
||||
ipv6_peer(tcp::endpoint const& ip, bool connectable, int src);
|
||||
ipv6_peer(libtorrent::address const& a);
|
||||
|
|
Loading…
Reference in New Issue