From 4775add3cbeefd520b735f1233d7aee6128c96ca Mon Sep 17 00:00:00 2001 From: victor Date: Wed, 18 Nov 2009 13:08:04 +0000 Subject: [PATCH] fallback seeder git-svn-id: https://ttuki.vtt.fi/svn/p2p-next/TUD/p2tp/trunk@581 e16421f0-f15b-0410-abcd-98678b794739 --- exec/trial.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/exec/trial.cpp b/exec/trial.cpp index 669ea96..3c7eb80 100644 --- a/exec/trial.cpp +++ b/exec/trial.cpp @@ -30,8 +30,9 @@ int main (int argn, char** args) { std::string sfn = tmpdir+"team.jpg"; const char* filename = sfn.c_str(); - Address tracker("victor.tribler.org:12345"), - bindaddr((uint32_t)INADDR_ANY,10000); + Address tracker("victor.p2p-next.org:12345"), + bindaddr((uint32_t)INADDR_ANY,10000), + fallback("victor2.p2p-next.org:12345"); if (0>p2tp::Listen(bindaddr)) { print_error("cannot bind"); @@ -40,9 +41,11 @@ int main (int argn, char** args) { p2tp::SetTracker(tracker); int file = p2tp::Open(filename,root_hash); printf("Downloading %s\n",root_hash.hex().c_str()); - int count = 100; + int count = 200; while (!p2tp::IsComplete(file) && count-->0) { p2tp::Loop(TINT_SEC/10); + if (count==100) + FileTransfer::file(file)->OnPexIn(fallback); printf("done %lli of %lli (seq %lli) %lli dgram %lli bytes up, %lli dgram %lli bytes down\n", p2tp::Complete(file), p2tp::Size(file), p2tp::SeqComplete(file), Datagram::dgrams_up, Datagram::bytes_up, -- 2.20.1