NET_StreamSocket.3type - Man Page
An object that represents a streaming connection to another system.
Synopsis
#include <SDL3_net/SDL_net.h> typedef struct NET_StreamSocket NET_StreamSocket;
Description
This is meant to be a reliable, stream-oriented connection, such as TCP.
Each NET_StreamSocket represents a single connection between systems. Usually, a client app will have one connection to a server app on a different computer, and the server app might have many connections from different clients. Each of these connections communicate over a separate stream socket.
Availability
This datatype is available since SDL_net 3.0.0.
See Also
NET_CreateClient(3), NET_WriteToStreamSocket(3), NET_ReadFromStreamSocket(3)
Info
SDL_net 3.2.0 SDL_net3 DATATYPES