// Returns number of seconds the torrent has been active inline boost::int64_t getActiveTime() { return m_handle.status().active_time; }
// Returns the current torrent state (downloading, queueing, seeding, etc) inline libtorrent::torrent_status::state_t getState() { return m_handle.status().state; }
//Returns the URL of the last working tracker inline std::string getCurrentTrackerURL() { return m_handle.status().current_tracker; }
// Returns a the total size of files remaining to download in torrent inline boost::int64_t getRemaining() { return m_handle.status().total_wanted - m_handle.status().total_wanted_done; }