~ubuntu-branches/ubuntu/wily/aria2/wily-proposed

« back to all changes in this revision

Viewing changes to src/UTMetadataRequestTracker.h

  • Committer: Package Import Robot
  • Author(s): Kartik Mistry
  • Date: 2013-05-06 15:03:54 UTC
  • mfrom: (2.5.18 sid)
  • Revision ID: package-import@ubuntu.com-20130506150354-jt3mjk1q1ukmn0go
Tags: 1.17.0-1
* New upstream release.
* debian/control:
  + Set priority to optional from extra (Closes: #697659).

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
namespace aria2 {
46
46
 
47
47
class UTMetadataRequestTracker {
48
 
private:
 
48
public:
 
49
  // Made public so that unnamed functor can access this
49
50
  struct RequestEntry {
50
51
    size_t index_;
51
52
    Timer dispatchedTime_;
62
63
      return index_ == e.index_;
63
64
    }
64
65
  };
65
 
 
 
66
private:
66
67
  std::vector<RequestEntry> trackedRequests_;
67
68
public:
68
69
  UTMetadataRequestTracker();