I have a Client socket obj in server socket app......
its used for sending and receiving....
Client.Create();

after assigning it to a socket.
Accept(Client,0,0)

I can
Client.Send(data,strlen(data));

after disconnecting from the socket, the Client object is unable to receive any connection when i assign it with Accept(Client,0,0) again....

Is there any re-initialisation that needs to b done?