dermesser / libsocket

The ultimate socket library for C and C++, supporting TCP, UDP and Unix sockets (DGRAM and STREAM) on Linux, FreeBSD, Solaris. See also my uvco library for a refreshed version!
https://borgac.net/~lbo/doc/libsocket/
Other
802 stars 195 forks source link

websockets #68

Open clankill3r opened 4 years ago

clankill3r commented 4 years ago

(noob alert)

Is it possible to create websockets? And if not, what has to be done to make that possible?

dermesser commented 4 years ago

Websockets are on a technical level very different from BSD sockets, which this library deals with (the former run over TLS and are initiated over HTTP). For websockets I'd recommend libraries like curl or other HTTP libraries.On Nov 21, 2019 11:57, Doeke Wartena notifications@github.com wrote:(noob alert) Is it possible to create websockets? And if not, what has to be done to make that possible?

—You are receiving this because you are subscribed to this thread.Reply to this email directly, view it on GitHub, or unsubscribe.