Data received on socket

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Im using socket object, and im sending data from first socket to the other,
How can i know when the other socket has recevied my Data ?

Thanx,
 
use the socket.available property to see if data is available to be read
before calling the read method.
 
i didnt ask for that :)
But ill explain again

socket number 1 sends data to socket number 2
how does socket number 1 knows WHEN socket number 2 received his data
 
how does socket number 1 knows WHEN socket number 2 received his data

When socket 2 sends back the confirmation.
 
Back
Top