Hello,
I send a TCP frame with :
Is this path OK, or is it needed to add a bind() between socket and connect ?
Thank you for attention.
Solved! Go to Solution.
Hi,
Yes you need add a bind() before connect to assign the port number, address and protocol the socket use , so that the socket could receive the other end's reply.
Hi,
Yes you need add a bind() before connect to assign the port number, address and protocol the socket use , so that the socket could receive the other end's reply.