kcgi icon indicating copy to clipboard operation
kcgi copied to clipboard

minimal CGI and FastCGI library for C/C++

Results 11 kcgi issues
Sort by recently updated
recently updated
newest added

Hello, This isn't a direct issue to kcgi but I think it could be valuable to add some information on how to use FastCGI with kcgi based programs on the...

Assume while writing data for a normal (e. g. HTTP 200 HTML) response one of the write fails with `KCGI_ENOMEM`. How can I the free the `kreq` without writing any...

304 responses should not have a body. However, when kcgi enables gzip, it compresses the empty body and responds with a 14 byte gzip header. Probably shouldn't compress empty body...

Hi I need to know how to access FastCGI parameters (e.g. `DOCUMENT_ROOT`) in a fcgi handler. I can see that these parameters are read while handling a request, but it...

What are the differences between releases from https://kristaps.bsd.lv/kcgi/snapshots/ and from https://github.com/kristapsdz/kcgi/tags ? They have different files/structure, and therefore different checksums... should I prefer one over the other?

This is a very small change to fix a typo I discovered in the khttp_parse man page today. Thank you for this excellent and well-documented library!

# Trigger The HTML document below makes Firefox ESR 115.7.0 from OpenBSD ports send a POST request with `Content-Type = application/x-www-form-urlencoded;charset=UTF-8`. ``` function onLoad(e) { const curr_url = new URL(document.URL);...

I was just wondering if checking the token might be part of form processing, or if I have to do it all in my application.