I think, I got lost.
The problem is that I want to use event-loop based approach to implement simple HTTPS server (TLS 1.x). From what I've read so far, the best candidate to build an event loop is libev
and the best candidate nowadays to work with TLS is libtls
from the LibreSSL Project.
I do know that libev
doesn't contain DNS and HTTP server (as opposed to libevent
) so I have to either find another library that will add this capability or use implement it by myself. I found http-parser
library that can help me with that.
Regarding the TLS thing, I believe the LibreSSL's libtls
can be fit in without any problem, because it actually doesn't matter what kind of byte string you are processing.
So the main question is: am I right thinking that way? Is it really possible to use libev
+ http-parser
+ libtls
in order to build event-loop based HTTPS server? Is is feasible to implement it at all? Am I missing smth important? Could you recommend other libraries which can help me implement HTTP server?
Big thanks in advance.