Reputation: 21
I need opensource Web Sockets API using libevent in C/C++. Please show me where to find it.
Upvotes: 2
Views: 1889
Reputation: 404
You could use evws or libwebsock which is based on libevent. I haven't used it yet for myself but it looks quite promising.
If it doesn't match your requirements you could build something yourself (probably based on libevtp which provides an improved HTTP API for libevent). See RFC 6455 for the protocol specification.
Upvotes: 1