package fcgi
import "net/http/fcgi"
Package fcgi implements the FastCGI protocol.
The protocol is not an official standard and the original documentation is no longer online. See the Internet Archive's mirror at: https://web.archive.org/web/20150420080736/http://www.fastcgi.com/drupal/node/6?q=node/22
Currently only the responder role is supported.
Index ¶
Variables ¶
ErrConnClosed is returned by Read when a handler attempts to read the body of a request after the connection to the web server has been closed.
ErrRequestAborted is returned by Read when a handler attempts to read the body of a request that has been aborted by the web server.
Functions ¶
func Serve ¶
Serve accepts incoming FastCGI connections on the listener l, creating a new goroutine for each. The goroutine reads requests and then calls handler to reply to them. If l is nil, Serve accepts connections from os.Stdin. If handler is nil, http.DefaultServeMux is used.
Source Files ¶
- Version
- v1.8.4
- Published
- Oct 4, 2017
- Platform
- darwin/amd64
- Imports
- 14 packages
- Last checked
- 27 seconds ago –
Tools for package owners.