qhttpserver icon indicating copy to clipboard operation
qhttpserver copied to clipboard

HTTP server implementation for Qt based on node.js' http parser

Results 8 qhttpserver issues
Sort by recently updated
recently updated
newest added

Hi , Thanks for the repo; it's awesome. I think adding CMake to the repository is very useful. if it's possible. Thanks

The QHttpRequest object is not deleted after a disconnect!

How to get data from Main Class function (public variable in main class) when do the replying (in class Responder)? From your example script of the bodydata (https://github.com/nikhilm/qhttpserver/tree/master/examples/bodydata), i added...

how can I add cors information to header?

On each http request a new instance of `m_request` was created and not deleted. So every request caused a memory gap of several kB. To close this gap the `m_request`...

have a error in when compile source error source(qhttpserver-master\http-parser\http_parser.c): int hasBody = parser->flags & F_CHUNKED || (parser->content_length > 0 && parser->content_length != ULLONG_MAX); if (parser->upgrade && (parser->method == HTTP_CONNECT ||...