From 564fbea0654b27a41a9c7486f4eaa4e0bc53789f Mon Sep 17 00:00:00 2001 From: Falcosc Date: Sat, 14 Jan 2017 18:58:44 +0100 Subject: [PATCH] Docu for deprecated (#1551) documentation for deprecated members --- include/libtorrent/session_status.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/libtorrent/session_status.hpp b/include/libtorrent/session_status.hpp index f4e28d235..abf1b9326 100644 --- a/include/libtorrent/session_status.hpp +++ b/include/libtorrent/session_status.hpp @@ -87,15 +87,15 @@ namespace libtorrent // the total download and upload rates accumulated // from all torrents. This includes bittorrent protocol, DHT and an estimated TCP/IP // protocol overhead. - // deprecated, use session_stats_metrics "net.recv_bytes" and "net.send_bytes" - // they does include payload + protocol bytes but does not include ip protocol bytes + // deprecated, use session_stats_metrics "net.recv_bytes" + "net.recv_ip_overhead_bytes" + // they does include payload + protocol + ip overhead bytes int upload_rate; int download_rate; // the total number of bytes downloaded and // uploaded to and from all torrents. This also includes all the protocol overhead. - // deprecated, use session_stats_metrics "net.recv_bytes" and "net.send_bytes" - // they does include payload + protocol bytes but does not include ip protocol bytes + // deprecated, use session_stats_metrics "net.recv_bytes" + "net.recv_ip_overhead_bytes" + // they does include payload + protocol + ip overhead bytes boost::int64_t total_download; boost::int64_t total_upload;