diff --git a/docs/building.html b/docs/building.html
index 0e82a8147..544a0e9db 100644
--- a/docs/building.html
+++ b/docs/building.html
@@ -276,10 +276,11 @@ libraries.
TORRENT_STORAGE_DEBUG |
This will enable extra expensive invariant
diff --git a/docs/reference-Session.html b/docs/reference-Session.html
index 2de0f8279..6aa499ea7 100644
--- a/docs/reference-Session.html
+++ b/docs/reference-Session.html
@@ -513,18 +513,16 @@ class session: public boost::noncopyable
session (fingerprint const& print = fingerprint("LT"
, LIBTORRENT_VERSION_MAJOR, LIBTORRENT_VERSION_MINOR, 0, 0)
, int flags = start_default_features | add_default_plugins
- , boost::uint32_t alert_mask = alert::error_notification
- TORRENT_LOGPATH_ARG_DEFAULT);
- session (settings_pack const& pack
- , fingerprint const& print = fingerprint("LT"
- , LIBTORRENT_VERSION_MAJOR, LIBTORRENT_VERSION_MINOR, 0, 0)
- , int flags = start_default_features | add_default_plugins);
+ , boost::uint32_t alert_mask = alert::error_notification);
session (fingerprint const& print
, std::pair<int, int> listen_port_range
, char const* listen_interface = "0.0.0.0"
, int flags = start_default_features | add_default_plugins
- , int alert_mask = alert::error_notification
- TORRENT_LOGPATH_ARG_DEFAULT);
+ , int alert_mask = alert::error_notification);
+ session (settings_pack const& pack
+ , fingerprint const& print = fingerprint("LT"
+ , LIBTORRENT_VERSION_MAJOR, LIBTORRENT_VERSION_MINOR, 0, 0)
+ , int flags = start_default_features | add_default_plugins);
~session ();
void load_state (lazy_entry const& e);
void save_state (entry& e, boost::uint32_t flags = 0xffffffff) const;
@@ -623,18 +621,16 @@ class session: public boost::noncopyable
session (fingerprint const& print = fingerprint("LT"
, LIBTORRENT_VERSION_MAJOR, LIBTORRENT_VERSION_MINOR, 0, 0)
, int flags = start_default_features | add_default_plugins
- , boost::uint32_t alert_mask = alert::error_notification
- TORRENT_LOGPATH_ARG_DEFAULT);
-session (settings_pack const& pack
- , fingerprint const& print = fingerprint("LT"
- , LIBTORRENT_VERSION_MAJOR, LIBTORRENT_VERSION_MINOR, 0, 0)
- , int flags = start_default_features | add_default_plugins);
+ , boost::uint32_t alert_mask = alert::error_notification);
session (fingerprint const& print
, std::pair<int, int> listen_port_range
, char const* listen_interface = "0.0.0.0"
, int flags = start_default_features | add_default_plugins
- , int alert_mask = alert::error_notification
- TORRENT_LOGPATH_ARG_DEFAULT);
+ , int alert_mask = alert::error_notification);
+session (settings_pack const& pack
+ , fingerprint const& print = fingerprint("LT"
+ , LIBTORRENT_VERSION_MAJOR, LIBTORRENT_VERSION_MINOR, 0, 0)
+ , int flags = start_default_features | add_default_plugins);
TODO: 3 could the fingerprint be a setting as well? And should the
settings_pack be optional?
|