Guismay 0 Newbie Poster

Hello,

I have created two applications, a client and a server.
I created a multi transfer system, with Winsock, but there is a little problem again.

For the transfer, I created 2 threads (one in the client and one in the server).

During the transfer, the server use one TCP port, and the status of the connection was "Etablished".
In the server, it is the same thing, I have a connection on "Etablished", but I have also an other connection on "Listening".

When the download (or upload) is complete, the thread make this :

CloseSocket(sock);
  WSACleanUP;

and close itself.

Now, my problem is that the connection of the client who was on "Listening" was always here, I didn't manage to remove it :(

I think it is because this code :

If (Listen(Sock, SOMAXCONN) <> 0) Then Goto Disconnected;

but for me the closesocket should close it :s

Is there a function which allow me to close the connection listening ?
Do you have an idea to stop this ?

Thank you for your help.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.