Changes between Version 11 and Version 12 of Plan/libtorrent


Ignore:
Timestamp:
01/17/2014 02:20:26 PM (10 years ago)
Author:
Cas
Comment:

committed session_settings in preferencesmanager.py

Legend:

Unmodified
Added
Removed
Modified
  • Plan/libtorrent

    v11 v12  
    5353}}} 
    5454 
    55 '''preferencesmanager.py''' - * -> session.set_settings() for these entries, some have been renamed 
    56 {{{ 
    57         .def("set_local_download_rate_limit", allow_threads(&session::set_local_download_rate_limit)) 
    58         .def("set_local_upload_rate_limit", allow_threads(&session::set_local_upload_rate_limit)) 
    59         .def("set_download_rate_limit", allow_threads(&session::set_download_rate_limit)) 
    60         .def("set_upload_rate_limit", allow_threads(&session::set_upload_rate_limit)) 
    61         .def("set_max_uploads", allow_threads(&session::set_max_uploads)) 
    62         .def("set_max_connections", allow_threads(&session::set_max_connections)) 
    63         .def("set_max_half_open_connections", allow_threads(&session::set_max_half_open_connections)) 
    64 }}} 
    65  
    6655'''core.py, preferencesmanager.py''' - For the python bindings use session.get_settings() 
    6756{{{