~ubuntu-branches/ubuntu/trusty/ktorrent/trusty

« back to all changes in this revision

Viewing changes to libbtcore/torrent/advancedchokealgorithm.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2010-02-28 23:22:08 UTC
  • mfrom: (0.7.15 sid)
  • Revision ID: james.westby@ubuntu.com-20100228232208-6g2xwvd02kfv6lxf
Tags: 3.3.4+dfsg.1-1ubuntu1
* Merge with Debian, remaining changes:
  - Used versioned boost build-depend
  - Include /usr/lib/kubuntu-desktop-i18n/debhelper/kubuntu.mk in
    debian/rules for translations support
  - Add kubuntu_01_fix_videowidget_include.diff to fix FTBS

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
namespace bt
26
26
{
27
27
        class Peer;
28
 
        class PeerPtrList;
29
28
        struct TorrentStats;
30
29
        
31
30
 
44
43
                
45
44
        private:
46
45
                bool calcACAScore(Peer* p,ChunkManager & cman,const TorrentStats & stats);
47
 
                Peer* updateOptimisticPeer(PeerManager & pman,const PeerPtrList & ppl);
48
 
                void doUnchoking(PeerPtrList & ppl,Peer* poup);
 
46
                Peer* updateOptimisticPeer(PeerManager & pman,const QList<Peer*> & ppl);
 
47
                void doUnchoking(QList<Peer*> & ppl,Peer* poup);
49
48
        };
50
49
 
51
50
}