user1500513
user1500513

Reputation: 21

Does anyone know of any attempt to implement the Web Sockets API using libevent in C/C++?

I need opensource Web Sockets API using libevent in C/C++. Please show me where to find it.

Upvotes: 2

Views: 1889

Answers (1)

Alan Q.
Alan Q.

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

Related Questions