Your trouble has been identified.
Emule 0.47a Morph 8.13 Beta's With dynamic socket buffer.
#261
Posted 07 June 2006 - 02:13 PM
Your trouble has been identified.
#262
Posted 07 June 2006 - 04:48 PM
checked your Webcache Implementation for the "Show WC blocks" codepart and found a little bug - in DownloadClient.cpp:
Quote
//Fill with blue WCblock available
for (POSITION pos = WebCachedBlockList.GetHeadPosition();pos != 0;){
CWebCachedBlock* WCBlock = WebCachedBlockList.GetNext(pos);
if (md4cmp(WCBlock->block->FileID, file->GetFileHash()) == 0) {
block = WCBlock->block;
if (block->StartOffset >= start && block->StartOffset <= end || block->EndOffset >= start && block->EndOffset <= end) {
s_UpStatusBar.FillRange((block->StartOffset>start)?block->StartOffset%PARTSIZE:0, ((block->EndOffset < end)?block->EndOffset:end)%PARTSIZE, crClientOnly);
}
}
}
}
if (!m_DownloadBlocks_list.IsEmpty()){
//Fill with white Block reserved but not requested yet
for(POSITION pos=m_DownloadBlocks_list.GetHeadPosition();pos!=0;){
block = m_DownloadBlocks_list.GetNext(pos);
if (block->StartOffset >= start && block->StartOffset <= end || block->EndOffset >= start && block->EndOffset <= end) {
s_UpStatusBar.FillRange((block->StartOffset>start)?block->StartOffset%PARTSIZE:0, ((block->EndOffset < end)?block->EndOffset:end)%PARTSIZE, crDot);
}
}
}
Should be s_StatusBar, no?
GreetZ,
WiZ
#263
Posted 07 June 2006 - 10:17 PM
SiRoB, on Jun 7 2006, 03:13 PM, said:
Your trouble has been identified.
Unresolved bugs in MorphXT (as of v8.13): Sorting search results by "Known" column, Sorting "Files" page by "Transferred Data" column
#264
Posted 07 June 2006 - 10:23 PM
The more thing are explained the faster they are solved.
#265
Posted 07 June 2006 - 10:46 PM
Scenario: Select a query term for which
1. a three digit number of search results will be returned,
2. a significant number of these results will be marked with a non-empty value of the "known" column.
The digits aren't necessary but they make the observation of the effect more likely; it seems to be important that the result list is long enough as to require a scrollbar.
According to my experience the type of search (server vs. kademlia) is irrelevant, and so is the type of "known" value (shared vs. downloaded vs. aborted etc.).
Start this search. You'll get a buffer of results, some of which contain the non-empty value for the "known" column.
Now click on the column header for "known".
Expected behaviour: The whole list to be sorted by this column's value.
Observed behaviour: Only a few of the non-empty values will be used for the sorting, IMHO these who were visible without scrolling when the search result was displayed. Repeated clicks on the "known" column will toggle the search order of all results but still use only a few of the lines with a non-empty "known" value for sorting.
Now scroll down the whole sort result buffer. You'll observe a lot more results with non-empty "known" value that were ignored by the sort function.
Finally repeat the sorting by clicking on the "known" column header.
Miraculously now the sorting works, as if the column value to be used by the sort function had been undefined until the scrolling of the results list.
Unresolved bugs in MorphXT (as of v8.13): Sorting search results by "Known" column, Sorting "Files" page by "Transferred Data" column
#266
Posted 08 June 2006 - 03:20 PM
#267
Posted 08 June 2006 - 05:36 PM
xscarab, on Jun 8 2006, 05:20 PM, said:
Hi,i have seen the same behaviour with all Upload Clients [version indipendent] like i have wrote here ;-)
Anyone [xscarab excluded] can support it?
Bye
UPDATE 09/06/06:take a look on how MB clients download from me nearly every chunk :-|
What can i do to help MorphXT Team to solve this problem?
This post has been edited by Cthulhu_Ita: 09 June 2006 - 04:31 PM
#268
Posted 08 June 2006 - 07:33 PM
Sorry for my bad englisch
regards
mav744
This post has been edited by mav744: 08 June 2006 - 07:33 PM
#269
Posted 09 June 2006 - 12:02 PM
mav744, on Jun 8 2006, 09:33 PM, said:
I don't think so.I don't see what you tell,when i change that menų [Statistics to Transfers or opposite] CPU change between 2 to 5% [after some seconds return to 2] not more.
I have a similar problem with a previous beta.
Reinstall this beta [a clean install] from binaries [i thing you know that don't lost anything:download,temp,options...] keeping only actual "config" folder [replace other] and take a look to your CPU usage ;-)
I'll wait a feedback.
Bye
#270
Posted 09 June 2006 - 12:13 PM
mav744, on Jun 8 2006, 09:33 PM, said:
the only possible change i can think of is this in beta 3:
Quote
But i doubt you will notice it very much, but details what exacty is on your trasfer screen lack. mod icons should not be responisble for this since there are the same amount of icons that need to be drawn.
Also take a good look at the display settings. You can do some CPU optimilizations there.
Trouble connecting to a server? Use kad and /or refresh your server list
Strange search results? Check for fake servers! Or download morph, enable obfuscated server required, and far less fake server seen.
Looking for morphXT translators. If you want to translate the morph strings please come here (you only need to be able to write, no coding required. ) Covered now: cn,pt(br),it,es_t,fr.,pl Update needed:de,nl
-Morph FAQ [English wiki]--Het grote emule topic deel 13 [Nederlands]
if you want to send a message i will tell you to open op a topic in the forum. Other forum lurkers might be helped as well.
#271
Posted 09 June 2006 - 03:40 PM
xscarab, on Jun 2 2006, 02:29 PM, said:
i have been running the beta now for several days and that's how my upload is used 99% of the time:

ok slotfocus works, but what's up with 15 trickle slots? o_O considering i have ~40kb/s upload thats way too much.
now some notes about that all the files uploading are on powershare + release. basically the problem lies in the fact that it opens up a new slot for each file on powershare. even if there are already 10 slots open it will still open up more if a client requests one of those.
that's a somewhat silly behaviour. even if the file is on powershare it should still stay in queue if it exceeds a specific open slotnumber.
fun issue as well i have the slotlimiter enabled with 3kb/s average. that would mean a max of 13 slots should get opened (still incredible silly for 40kb/s, but oh well), but powershare seems to blatantly ignore that.correct me if i'm wrong, but 16 > 13, ne?
anyway keep up the good work
#272
Posted 09 June 2006 - 06:28 PM
Der Idiot, on Jun 9 2006, 05:40 PM, said:
Well, the slotlimiter is very much advised as a workarround. But i think we are aware of it now.
if you make a print of the upload inlucde: i get your point anyway..... but next time ..
SLot#, speed, status, (waited, software, CDD, )
Trouble connecting to a server? Use kad and /or refresh your server list
Strange search results? Check for fake servers! Or download morph, enable obfuscated server required, and far less fake server seen.
Looking for morphXT translators. If you want to translate the morph strings please come here (you only need to be able to write, no coding required. ) Covered now: cn,pt(br),it,es_t,fr.,pl Update needed:de,nl
-Morph FAQ [English wiki]--Het grote emule topic deel 13 [Nederlands]
if you want to send a message i will tell you to open op a topic in the forum. Other forum lurkers might be helped as well.
#273
Posted 10 June 2006 - 07:23 AM
Quote
My webcache has two IP addresses - 217.98.20.20 and 217.98.20.195.
115.0.111.0 isn't my proxy.
Edit: another strange IP
Quote
This post has been edited by mkol: 10 June 2006 - 07:53 AM
#274
Posted 10 June 2006 - 08:54 PM
with friendly greets and soorry for bad englisch
mav744
#275
Posted 11 June 2006 - 12:30 AM
I had a crash when triyng to add a client to friends .
Do you want the .dmp file ?
#276
Posted 11 June 2006 - 11:37 AM
white lightning, on Jun 11 2006, 02:30 AM, said:
Yes please.
/Edit: got it. dont see any immediate bugs. How did you add the friend (clientlist/ip+post/ed2klink?)
This post has been edited by leuk_he: 11 June 2006 - 03:36 PM
Trouble connecting to a server? Use kad and /or refresh your server list
Strange search results? Check for fake servers! Or download morph, enable obfuscated server required, and far less fake server seen.
Looking for morphXT translators. If you want to translate the morph strings please come here (you only need to be able to write, no coding required. ) Covered now: cn,pt(br),it,es_t,fr.,pl Update needed:de,nl
-Morph FAQ [English wiki]--Het grote emule topic deel 13 [Nederlands]
if you want to send a message i will tell you to open op a topic in the forum. Other forum lurkers might be helped as well.
#277
Posted 11 June 2006 - 04:17 PM
It works well on my connection, except the few problems wrote in previous posts
No crashes, i hope they are small bugs
This post has been edited by WarriorWing: 12 June 2006 - 08:35 AM
#278
Posted 11 June 2006 - 05:32 PM
I double-clicked on filname , right click on the name of the client & left-click on "Add to Friends" .
When i re-started eMule (after the crash) , a message told me that the file emfriends.met was corrupted or invalid .
I controlled & i still have my friends list .
That's all .
#279
Posted 11 June 2006 - 05:44 PM
white lightning, on Jun 11 2006, 07:32 PM, said:
I double-clicked on filname , right click on the name of the client & left-click on "Add to Friends" .
When i re-started eMule (after the crash) , a message told me that the file emfriends.met was corrupted or invalid .
I controlled & i still have my friends list .
That's all .
i tried, but no crash
My report after 20H running:
USC works very well now! it never opens more than 8 slots and my 26KBs bandwith is always fully used. I report only 2 things:
1-When I turn powershare on, the slotexplosion effect appears again
2-In the statistics i have more failed upload sessions than previous beta: around 25% (in beta 6 i had only 10%). The bigger part of them is caused by timeouts or "impossible to establish connection".
Settings: UL 32KB (26 limited), no limits, powershare in auto mode and 100% of bandwith, do not remove trickle slots enabled.
This post has been edited by WarriorWing: 12 June 2006 - 08:34 AM
#280
Posted 12 June 2006 - 09:36 AM
1) I read something in this thread that IPFilter is disabled in your Beta, is that true or have I misunderstood that.
2)When will 8.13 final be released, dynamic socket buffer sounds interesting.










Sign In
Register










