Changeset 1676
- Timestamp:
- 06/21/07 16:46:51
- Files:
-
- trunk/cherrypy/wsgiserver/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/wsgiserver/__init__.py
r1671 r1676 555 555 server: the HTTP Server for this Connection. Usually, the server 556 556 object possesses a passive (server) socket which spawns multiple, 557 active (client) sockets, one for each connection. 557 active (client) sockets, one for each connection. The server object 558 must possess the following attributes: 559 560 * server_name: to be placed in the WSGI environ. 561 * bind_addr: either a UNIX socket (str) or a (host, port) tuple. 562 * version: a string, like "CherryPy/3.1alpha" 563 * protocol: an HTTP version string, e.g. "HTTP/1.1" 564 * mount_points: a list of [(script_name, wsgi_app)] pairs 565 * interrupt: usually None. 558 566 559 567 environ: a WSGI environ template. This will be copied for each request.

