expose set_alert_queue_size_limit to python

This commit is contained in:
Arvid Norberg 2010-11-15 05:34:52 +00:00
parent 62f8cac2b9
commit 8dbdd4ced4
2 changed files with 2 additions and 1 deletions

View File

@ -54,7 +54,7 @@
incoming connection
* added more detailed instrumentation of the disk I/O thread
* expose set_alert_queue_size_limit to python binding
* support dht nodes in magnet links
* support 100 Continue HTTP responses
* changed default choker behavior to use 8 unchoke slots (instead of being rate based)

View File

@ -359,6 +359,7 @@ void bind_session()
.def("set_severity_level", allow_threads(&session::set_severity_level))
#endif
.def("set_alert_mask", allow_threads(&session::set_alert_mask))
.def("set_alert_queue_size_limit", allow_threads(&session::set_alert_queue_size_limit))
.def("pop_alert", allow_threads(&session::pop_alert))
.def("wait_for_alert", &wait_for_alert, return_internal_reference<>())
.def("add_extension", &add_extension)