SDL_net icon indicating copy to clipboard operation
SDL_net copied to clipboard

A simple, cross-platform wrapper over TCP/IP sockets.

Results 25 SDL_net issues
Sort by recently updated
recently updated
newest added

# This bug report was migrated from our old Bugzilla tracker. These attachments are available in the static archive: * [IPV6 Patch (PatchIPV6, text/plain, 2015-04-24 08:59:22 +0000, 23256 bytes)](https://bugzilla.libsdl.org/attachment.cgi?id=2132) *...

enhancement

# This bug report was migrated from our old Bugzilla tracker. These attachments are available in the static archive: * [Patch for memleak (memleak.patch, text/plain, 2015-01-24 23:30:42 +0000, 653 bytes)](https://bugzilla.libsdl.org/attachment.cgi?id=2004)...

bug

# This bug report was migrated from our old Bugzilla tracker. These attachments are available in the static archive: * ~~[IPv6 support for SDL_net (SDL_net-r2633-ipv6.patch, text/plain, 2006-07-18 18:20:39 +0000, 38236...

enhancement

There are some large binaries in the `Xcode` directory, e.g. https://github.com/libsdl-org/SDL_net/blob/main/Xcode/iOS/SDL2.framework/SDL2 I guess they were added to Git by mistake?

Sending a datagram packet across local client\server network results in `sendto()` returning WSAEFAULT in `SendOneDatagram` from `SDLNet_SendDatagram()` on Wind11x86. Also fails in example code.

See https://github.com/libsdl-org/SDL_ttf/pull/349

I made a basic echo server with stream sockets. I made it such that when the user types "quit" both the server and the client should clean-up and close. Now,...

Hi! Lately, I've been having issues building projects that use SDL_net on distros that have gone through the /usr merge (Debian, Arch Linux, probably some more). As I can see...

`SO_REUSEADDR` is needed to quickly reuse the same port after the application crash or forgets to close all connections properly. ``` int opt = 1; setsockopt(server->handle, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt));...

**Note:** This _probably_ needs a fallback to support IPv4-only systems before merging. I've also only tested it on Linux, on exactly one network so far. So it could easily cause...