diff --git a/bindings/python/Jamfile b/bindings/python/Jamfile index afad3a1a7..e93a45240 100755 --- a/bindings/python/Jamfile +++ b/bindings/python/Jamfile @@ -22,6 +22,7 @@ python-extension libtorrent src/docstrings.cpp src/torrent.cpp src/peer_info.cpp + src/ip_filter.cpp /torrent//torrent /boost/python//boost_python : src diff --git a/bindings/python/src/torrent_handle.cpp b/bindings/python/src/torrent_handle.cpp index b199e86c8..ab251d2ef 100755 --- a/bindings/python/src/torrent_handle.cpp +++ b/bindings/python/src/torrent_handle.cpp @@ -171,7 +171,7 @@ void bind_torrent_handle() .def("set_max_connections", _(&torrent_handle::set_max_connections)) .def("set_upload_limit", _(&torrent_handle::set_upload_limit)) .def("set_download_limit", _(&torrent_handle::set_download_limit)) - .def("set_sequenced_download_threshold", _(&torrent_handle::set_sequenced_download_threshold)) + .def("set_sequential_download", _(&torrent_handle::set_sequential_download)) .def("pause", _(&torrent_handle::pause)) .def("resume", _(&torrent_handle::resume)) .def("is_paused", _(&torrent_handle::is_paused))