Gnutella Forums  

Go Back   Gnutella Forums > Discontinued Gnutella Client Forums > Mutella (Linux/Unix)
Register FAQ The Twelve Commandments Members List Calendar Arcade Find the Best VPN Today's Posts

Mutella (Linux/Unix) Mutella has been discontinued. We highly recommend you use an actively developed client instead.


 
 
LinkBack Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #1 (permalink)  
Old February 19th, 2002
Moak's Avatar
Guest
 
Join Date: September 7th, 2001
Location: Europe
Posts: 816
Moak is flying high
Default Some questions on Mutella 0.3.3

Hi Max,
I hope I can steal some of your time and can ask a question. :-)

Question: Why did you choose different cleanup tactics for the different client socket objects?
As far as I understood, the socket objects will be (as usual) assigned with new(), stored on a list. When the correspoding socket is closed, the socket object is removed from the list and the object destroyed with delete(). This last step, the remove tactics, seems to be different for different client sockets.

MGnuDirector is the listening server socket.
a) MGnuSock is an new incoming client socket (stored in m_SockList), will then be turned into:
b) MGnuNode a Gnutella connection after handshake (in m_NodeList )
c) MGnuUpload a upload, from a HTTP GET request (in m_UploadList)
d) MGnuDownload a download, from a GIV push request (in m_DownloadList)

To a) Socket is destroyed from server in MGnuDirector::OnTimer()
when MGnuSock object signs m_bDestroy==TRUE. Server tests this every second.

To b) Socket is destroyed from server in MGnuDirector::RemoveNode().
Which is called from the socket object itself, e.g. in OnClose() or whenever the socket closes itself. Cool, is there something critical which has to be avoided when a object deletes itself, to avoid runtime race conditions or crashs? It might only work because you run all socket stuff from one thread?

To c) Socket is destroyed from server in MGnuDirector::OnTimer()
when MGnuDownload signs m_nSecInactive>30. Server tests this every second. Also socket calls MGnuDirector::TransferMessage, which is obsolete?

To d) Socket is destroyed from server in MGnuDirector::OnTimer()
when MGnuUpload signs m_nStatus==TRANSFER_CLOSED || m_nStatus==TRANSFER_COMPLETED. Server tests this every second. Also socket calls MGnuDirector::TransferMessage, which is obsolete?

Suggestion:
Now.... how about doing it the same way for removing dead sockets? For example implement a RemoveNode() method for all socket types.... or using a timer based solution for all socket types? Just a suggestion.

Misc:
Some stuff I recognized or don't understand.

- void MGnuSock::OnReceive()
DWORD dwBuffLength = Receive(m_pBuff, 32768);
//shouldn't we collect bytes and split lines on '\n'?
//you could use sizeof(m_pBuff) instead 32768

m_bDestroy = true;
//shouldn't this be set at the end of the method, not at the beginning?
//or maybe better at the end of ForceDisconnect() and Close()?

- void MGnuDirector::OnTimer()
if(pSock->m_nSecsAlive > 15 || pSock->m_bDestroy)
// 15 sec will never reached because m_bDestroy becomes TRUE first?

if (pDown->m_nSecInactive>30)
// hmm, m_status==TRANSFER_CLOSED is never evaluated?

- Server socket class destructor should clean up also m_SockList?
- All socket classes destructors should do this: if (m_hSocket != INVALID_SOCKET) Close();
- Closing sockets should be more friendly, a ForceDisconnect should only used if necesarry.

Greets, Moak

Last edited by Moak; February 22nd, 2002 at 09:04 AM.
Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
any updates to mutella? Gateway Mutella (Linux/Unix) 3 December 2nd, 2005 05:13 PM
Mutella 0.4 is out! maksik Mutella (Linux/Unix) 5 November 20th, 2003 10:34 AM
mutella newbie question hotcarl Mutella (Linux/Unix) 2 September 8th, 2002 05:02 AM
Welcome to the Mutella forum maksik Mutella (Linux/Unix) 3 March 7th, 2002 07:36 AM
Why not a Mutella forum fefu Mutella (Linux/Unix) 7 March 7th, 2002 07:19 AM


All times are GMT -7. The time now is 09:42 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
SEO by vBSEO 3.6.0 ©2011, Crawlability, Inc.

Copyright © 2020 Gnutella Forums.
All Rights Reserved.