I made a program that send messages out using udp. The program will initially initialize the udp socket with a default ip address and port. However, it should also allow users to change the destination ip address and port during runtime.
Currently, I close the current socket if the users change the ip address/port, and re initialize/bind the socket with the new ip address/port.
The program is able to send out the messages successfully with the initial socket. But when I rebind the ip address/port, the binding sometimes failed. Bind() return a value of -1. I did some search online and read that TCP protocol has a 2msl timeout when a socket is close. Does that apply to UDP?
Also, is there a better method to allow user to change the destination ip/port. I'm using C++ on visual studio btw.
Thanks.
bind()fails, what is the return value ofWSAGetLastError()? – Remy Lebeau Nov 10 '12 at 4:11