Dispose of a previously-created datagram socket.
Defined in <SDL3_net/SDL_net.h>
void SDLNet_DestroyDatagramSocket(SDLNet_DatagramSocket *sock);
SDLNet_DatagramSocket * | sock | datagram socket to destroy. |
This will abandon any data queued for sending that hasn't made it to the socket. If you need this data to arrive, you should wait for confirmation from the remote computer in some form that you devise yourself. Queued data is not guaranteed to arrive even if the library made efforts to transmit it here.
Any data that has arrived from the remote end of the connection that hasn't been read yet is lost.
You should not operate on the same socket from multiple threads at the same time without supplying a serialization mechanism. However, different threads may access different sockets at the same time without problems.
This function is available since SDL_Net 3.0.0.