I have a situation that I need to create UDP connection to 3 different IP's.
The manual says to use:
int CreateTxUdpSocket(IPADDR send_to_addr, WORD remote_port, WORD local_port).
I would like to understand this a bit more. Do I need to close or anything else when I am done talking to this IP ?
Does one need to close CreateTxUdpSocket when done with it ?
Re: Does one need to close CreateTxUdpSocket when done with it ?
You will want to call close when you are done with the socket to free up that fd number and any resources it may be using. Once you open a UDP file descriptor socket it will function like any other file descripton on the NetBurner platform. The available functions can be found in chapter 11 of the Runtime Library documentation. Since this is only a TX socket, none of the read functions will be valid for this socket.
-Larry
-Larry