Does one need to close CreateTxUdpSocket when done with it ?

Discussion to talk about software related topics only.
Post Reply
seulater
Posts: 445
Joined: Fri Apr 25, 2008 5:26 am

Does one need to close CreateTxUdpSocket when done with it ?

Post by seulater »

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 ?
User avatar
lgitlitz
Posts: 331
Joined: Wed Apr 23, 2008 11:43 am
Location: San Diego, CA
Contact:

Re: Does one need to close CreateTxUdpSocket when done with it ?

Post by lgitlitz »

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
Post Reply