From 75eced80f2388811c92baae08c7ccc42f81480a4 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Sun, 8 Jun 2008 05:17:35 +0000 Subject: [PATCH] Update docs for torrent_resumed alert --- docs/manual.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/manual.rst b/docs/manual.rst index ce5ec2642..a16c83c7b 100644 --- a/docs/manual.rst +++ b/docs/manual.rst @@ -4223,6 +4223,19 @@ The ``resume_data`` member points to the resume data or is 0 on errors. virtual std::auto_ptr clone() const; }; +torrent_resumed_alert +-------------------- + +This alert is generated as a response to a ``torrent_handle::resume`` request. It is +generated when a torrent goes from a paused state to an active state. + +:: + + struct torrent_resumed_alert: torrent_alert + { + torrent_resumed_alert(torrent_handle const& h, std::string const& msg); + virtual std::auto_ptr clone() const; + }; dispatcher ----------