Free the results from SDLNet_GetLocalAddresses.
Defined in <SDL3_net/SDL_net.h>
void SDLNet_FreeLocalAddresses(SDLNet_Address **addresses);
SDLNet_Address ** | addresses | A pointer returned by SDLNet_GetLocalAddresses(). |
This will unref all addresses in the array and free the array itself.
Since addresses are reference counted, it is safe to keep any addresses you want from this array even after calling this function, as long as you called SDLNet_RefAddress() on them first.
It is safe to pass a NULL in here, it will be ignored.
It is safe to call this function from any thread.
This function is available since SDL_Net 3.0.0.