by beshrkayali on 9/9/22, 1:24 PM with 10 comments
by jraph on 9/9/22, 1:48 PM
I trust him to implement WebSockets correctly, it's way easier than most things he probably had to handle in curl.
It's good he went for a solution that does not bloat curl.
Good to see this feature in Curl too. libcurl is very nice, things are designed in a straightforward way and it's flexible, it's a library done with taste, and the curl program is also very helpful and being able to debug websocket related stuff with it might be very handy.
About:
> [libwebsockets] seems (too) tightly integrated with event libraries
I too often was slowed down by this kind of stuff when wanting to use anything on top of glib, like dbus for instance. These things want your program to be written in a certain way, rather than your program being able to call the library as it sees fit. In particular, you need to bent to the glib's event loop, and good luck if your program does not quite work like this. There are ways, but there are not very well documented.
by matt-attack on 9/9/22, 1:48 PM
by moralestapia on 9/9/22, 2:53 PM
I've been looking at something like this for ages. Thanks, Daniel!