mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
2009-01-06 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Applied AdaptiveURISelector patch from Aurelien Lefebvre. This patch adds AdaptiveURISelector, which selects one of the bests mirrors for first and reserved connections. For supplementary ones, it returns mirrors which has not been tested yet, and if each of them already tested, returns mirrors which has to be tested again. Otherwise, it doesn't return anymore mirrors. * src/AdaptiveURISelector.cc * src/AdaptiveURISelector.h * src/FtpNegotiationCommand.cc * src/HttpResponseCommand.cc * src/Makefile.am * src/Makefile.in * src/OptionHandlerFactory.cc * src/RequestGroup.cc * src/RequestGroup.h * src/RequestGroupMan.cc * src/ServerStat.cc * src/ServerStat.h * src/ServerStatMan.cc * src/SpeedCalc.cc * src/URISelector.h * src/prefs.cc * src/prefs.h * test/RequestGroupManTest.cc * test/ServerStatManTest.cc * test/ServerStatTest.cc
This commit is contained in:
parent
5325ec4155
commit
0a4f43d0ed
21 changed files with 683 additions and 34 deletions
|
@ -1,4 +1,9 @@
|
|||
#include "RequestGroupMan.h"
|
||||
|
||||
#include <fstream>
|
||||
|
||||
#include <cppunit/extensions/HelperMacros.h>
|
||||
|
||||
#include "prefs.h"
|
||||
#include "SingleFileDownloadContext.h"
|
||||
#include "RequestGroup.h"
|
||||
|
@ -8,8 +13,6 @@
|
|||
#include "ServerStatMan.h"
|
||||
#include "ServerStat.h"
|
||||
#include "File.h"
|
||||
#include <fstream>
|
||||
#include <cppunit/extensions/HelperMacros.h>
|
||||
|
||||
namespace aria2 {
|
||||
|
||||
|
@ -97,6 +100,7 @@ void RequestGroupManTest::testLoadServerStat()
|
|||
|
||||
Option option;
|
||||
RequestGroupMan rm(std::deque<SharedHandle<RequestGroup> >(), 0, &option);
|
||||
std::cerr << "testLoadServerStat" << std::endl;
|
||||
CPPUNIT_ASSERT(rm.loadServerStat(f.getPath()));
|
||||
SharedHandle<ServerStat> ss_localhost = rm.findServerStat("localhost",
|
||||
"http");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue