merged fix from RC_0_16
This commit is contained in:
parent
ae8e3bc04f
commit
cfcd817545
|
@ -6,6 +6,7 @@
|
|||
* fix uTP edge case where udp socket buffer fills up
|
||||
* fix nagle implementation in uTP
|
||||
|
||||
* make get_settings available in the python binding regardless of deprecated functions
|
||||
* fix typo in python settings binding
|
||||
* fix possible dangling pointer use in peer list
|
||||
* fix support for storing arbitrary data in the DHT
|
||||
|
|
|
@ -600,6 +600,7 @@ void bind_session()
|
|||
.def("get_settings", &session_get_settings)
|
||||
#else
|
||||
.def("settings", &session_get_settings)
|
||||
.def("get_settings", &session_get_settings)
|
||||
#endif
|
||||
.def("set_settings", &session_set_settings)
|
||||
#ifndef TORRENT_DISABLE_ENCRYPTION
|
||||
|
|
Loading…
Reference in New Issue