expose set_alert_queue_size_limit to python
This commit is contained in:
parent
62f8cac2b9
commit
8dbdd4ced4
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue