index
:
src
cvs/HEAD
kms/intel
kms/radeon
master
OpenBSD base system
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
usr.sbin
/
httpd
/
server_fcgi.c
Age
Commit message (
Expand
)
Author
2015-01-13
Abort if fcgi_chunked is not true to avoid sending additional garbage
Reyk Floeter
2015-01-04
add new url stripping option:
Christopher Zimmermann
2014-12-21
Stop pulling in <arpa/inet.h> or <arpa/nameser.h> when unnecessary.
Philip Guenther
2014-12-12
Like previously done in relayd, change the keyword "ssl" to "tls" to
Reyk Floeter
2014-12-04
stop viral header propagation. none of this code uses sys/hash.h
Ted Unangst
2014-10-25
Remove unnecessary netinet/in_systm.h include.
Lawrence Teo
2014-09-29
whitespace spotted while studying the code
Theo de Raadt
2014-09-02
FastCGI did not support persistent connections. Add initial support
Reyk Floeter
2014-09-01
Don't pass the local buffer array by reference.
Reyk Floeter
2014-09-01
Replace the code to get the FastCGI Status header with a proper way to
Reyk Floeter
2014-08-29
Use two instead of one http descriptor for request and response.
Reyk Floeter
2014-08-21
Add Last-Modified: HTTP header.
Christopher Zimmermann
2014-08-13
For a non-existent root we don't want the root prefix to show up in
Christopher Zimmermann
2014-08-13
Provide a failsafe version of the path_info() function that doesn't
Reyk Floeter
2014-08-11
make a few variables more local
Theo de Raadt
2014-08-08
When opening directories, re-match the location after the index file
Reyk Floeter
2014-08-07
Don't try to ouput FCGI_STDERR into error.log if there is no data.
Florian Obser
2014-08-07
Opportunistically try to parse "Status: $code" in the very first
Florian Obser
2014-08-06
Write STDERR from the CGI to the web server error log as intended.
Reyk Floeter
2014-08-06
If the very first fcgi STDOUT record has length 0 the cgi script
Florian Obser
2014-08-06
Always zero-out the fcgi record header for STDIN data.
Reyk Floeter
2014-08-06
Use memset(buf instead of memset(&buf.
Reyk Floeter
2014-08-06
http POST support
Florian Obser
2014-08-06
Content-Length and Content-Type are transmitted as CONTENT_LENGTH and
Florian Obser
2014-08-04
Add HTTPS = on CGI variable.
Reyk Floeter
2014-08-04
Implement PATH_INFO and add DOCUMENT_ROOT.
Reyk Floeter
2014-08-04
httpd doesn't support SSL/TLS yet, remove the remaining bits.
Reyk Floeter
2014-08-03
c-type functions / makros need a cast to unsigned char, not int
Florian Obser
2014-08-03
spacing
Reyk Floeter
2014-08-03
Dynamically pass HTTP request headers as protocol-specific HTTP_* CGI
Reyk Floeter
2014-08-03
Add function to iterate all headers. No functional change.
Reyk Floeter
2014-08-03
Split fastcgi socket path and document root option and add the
Reyk Floeter
2014-08-03
Add missing log call for FastCGI requests.
Reyk Floeter
2014-08-02
don't leak fcgi fd
Florian Obser
2014-08-02
Padding of fcgi records is optional, but if we receive padding data we
Florian Obser
2014-08-02
We need to read from the fcgi bufferevent until it's empty because the
Florian Obser
2014-08-02
Allow to specify a FastCGI TCP socket on localhost (eg. :9000). Used
Reyk Floeter
2014-08-02
spacing
Reyk Floeter
2014-08-01
Rewrite fcgi_add_param and hand over a lot more http headers etc. to
Florian Obser
2014-08-01
Correctly parse fcgi records if we don't get the whole record in one
Florian Obser
2014-07-31
Only write the HTTP header for the first fastcgi chunk.
Reyk Floeter
2014-07-31
some fastcgi improvements:
Reyk Floeter
2014-07-31
One bufferevent can be shared by file and fcgi.
Reyk Floeter
2014-07-31
Allow to specify a non-default fastcgi socket.
Reyk Floeter
2014-07-31
Put in first stab at fastcgi. Very early work in progress. Putting it
Florian Obser