up vote 0 down vote favorite
share [g+] share [fb]

Is it necessary to close the connection of a tcplistener or tcpclient after every message received, or is it possible to close it at a later time while it continues to receive data? Is there any major security issue with leaving it open and listening? I know trojans tend to open a listener and leave it open, will my program be detected as such? Its just a simple chat program....

Thanks for the help!

This is in vb.net.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

It depends what the protocol is. If the protocol expects a new connection for each message, then you should close it. (This is like HTTP 1.0.)

If the protocol allows multiple messages to be sent down the same connection, then it's entirely reasonable to leave it open. (This is like HTTP 1.1 and most native database connections.)

I wouldn't expect your connection to be treated with undue suspicion just for keeping open.

link|improve this answer
K. How can I check what the protocol it uses is? – Cyclone Sep 13 '09 at 22:53
You should know what you're using the socket for - or put the decision back into the hands of your caller, who should know. At some point some code has to know what protocol you're talking, and act accordingly. – Jon Skeet Sep 14 '09 at 5:22
TCP, got it! – Cyclone Sep 20 '09 at 18:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.