fix build

This commit is contained in:
Arvid Norberg 2014-09-28 03:27:13 +00:00
parent 40b4c6b91f
commit d723a7a4c6
2 changed files with 3 additions and 0 deletions

View File

@ -111,6 +111,8 @@ namespace libtorrent
// if it's changed referencing back into that list will fail
const std::string m_url;
web_seed_entry* m_web;
// the number of bytes left to receive of the response we're
// currently parsing
size_type m_response_left;

View File

@ -56,6 +56,7 @@ namespace libtorrent
, web_seed_entry& web)
: web_connection_base(pack, web)
, m_url(web.url)
, m_web(&web)
, m_response_left(0)
, m_chunk_pos(0)
, m_partial_chunk_header(0)