mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-03-11 13:01:08 +00:00
use the right torrent port from the start, not need to change it later
This commit is contained in:
parent
d149565509
commit
4513fee3e5
@ -139,11 +139,11 @@ namespace libtorrent
|
|||||||
, LIBTORRENT_VERSION_MAJOR, LIBTORRENT_VERSION_MINOR, 0, 0)
|
, LIBTORRENT_VERSION_MAJOR, LIBTORRENT_VERSION_MINOR, 0, 0)
|
||||||
, int flags = start_default_features | add_default_plugins
|
, int flags = start_default_features | add_default_plugins
|
||||||
, boost::uint32_t alert_mask = alert::error_notification
|
, boost::uint32_t alert_mask = alert::error_notification
|
||||||
, char const* ext_ip = NULL
|
, char const* ext_ip = NULL, std::pair<int, int> listen_range = std::make_pair(0, 0)
|
||||||
TORRENT_LOGPATH_ARG_DEFAULT)
|
TORRENT_LOGPATH_ARG_DEFAULT)
|
||||||
{
|
{
|
||||||
TORRENT_CFG();
|
TORRENT_CFG();
|
||||||
init(std::make_pair(0, 0), "0.0.0.0", print, alert_mask, ext_ip);
|
init(listen_range, "0.0.0.0", print, alert_mask, ext_ip);
|
||||||
#if defined TORRENT_VERBOSE_LOGGING || defined TORRENT_LOGGING || defined TORRENT_ERROR_LOGGING
|
#if defined TORRENT_VERBOSE_LOGGING || defined TORRENT_LOGGING || defined TORRENT_ERROR_LOGGING
|
||||||
set_log_path(logpath);
|
set_log_path(logpath);
|
||||||
#endif
|
#endif
|
||||||
|
@ -149,7 +149,8 @@ void ThreadWaitExtIP()
|
|||||||
ses = new session(fingerprint("TW", LIBTORRENT_VERSION_MAJOR, LIBTORRENT_VERSION_MINOR, 0, 0)
|
ses = new session(fingerprint("TW", LIBTORRENT_VERSION_MAJOR, LIBTORRENT_VERSION_MINOR, 0, 0)
|
||||||
, session::add_default_plugins
|
, session::add_default_plugins
|
||||||
, alert::dht_notification
|
, alert::dht_notification
|
||||||
, ipStr.size() ? ipStr.c_str() : NULL );
|
, ipStr.size() ? ipStr.c_str() : NULL
|
||||||
|
, std::make_pair(listen_port, listen_port));
|
||||||
|
|
||||||
std::vector<char> in;
|
std::vector<char> in;
|
||||||
boost::filesystem::path sesStatePath = GetDataDir() / "ses_state";
|
boost::filesystem::path sesStatePath = GetDataDir() / "ses_state";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user