Update bindings to include queueing and file_renamed_alert

This commit is contained in:
Andrew Resch
2008-06-02 21:18:50 +00:00
parent 867e6c2009
commit 70fb14e11c
3 changed files with 22 additions and 1 deletions

View File

@@ -68,6 +68,12 @@ void bind_torrent_status()
.def_readonly("storage_mode", &torrent_status::storage_mode)
.def_readonly("up_bandwidth_queue", &torrent_status::up_bandwidth_queue)
.def_readonly("down_bandwidth_queue", &torrent_status::down_bandwidth_queue)
.def_readonly("all_time_upload", &torrent_status::all_time_upload)
.def_readonly("all_time_download", &torrent_status::all_time_download)
.def_readonly("active_time", &torrent_status::active_time)
.def_readonly("seeding_time", &torrent_status::seeding_time)
.def_readonly("seed_rank", &torrent_status::seed_rank)
.def_readonly("last_scrape", &torrent_status::last_scrape)
;
enum_<torrent_status::state_t>("states")