forked from premiere/premiere-libtorrent
merged python binding fix from RC_0_16
This commit is contained in:
parent
ee9523b8d1
commit
6297f3c47d
|
@ -22,6 +22,7 @@
|
|||
* fix uTP edge case where udp socket buffer fills up
|
||||
* fix nagle implementation in uTP
|
||||
|
||||
* added missing field to scrape_failed_alert in python bindings
|
||||
* GCC 4.8 fix
|
||||
* fix proxy failure semantics with regards to anonymous mode
|
||||
* fix round-robin seed-unchoke algorithm
|
||||
|
|
|
@ -338,6 +338,7 @@ void bind_alert()
|
|||
|
||||
class_<scrape_failed_alert, bases<tracker_alert>, noncopyable>(
|
||||
"scrape_failed_alert", no_init)
|
||||
.def_readonly("msg", &scrape_failed_alert::msg)
|
||||
;
|
||||
|
||||
class_<udp_error_alert, bases<alert>, noncopyable>(
|
||||
|
|
Loading…
Reference in New Issue