Index of the wsgiserver module
-
m
paste.script.wsgiserver
...
- A high-speed, production ready, thread pooled, generic WSGI server.
- a SSL ...
- a comma_separated_headers ...
- a quoted_slash ...
- a socket_errors_to_ignore ...
-
C
CherryPyWSGIServer
...
- An HTTP server for WSGI.
- a interrupt ... - Set this to an Exception instance to interrupt the server.
- a protocol ...
- a ready ...
- a version ...
-
C
ConnectionClass
...
- An HTTP connection (active socket).
- a environ ...
- a rbufsize ...
-
C
RequestHandlerClass
...
- An HTTP Request (and response).
- f __init__ ...
- f decode_chunked ... - Decode the 'chunked' transfer coding.
- f parse_request ... - Parse the next HTTP request start-line and message-headers.
- f read_headers ... - Read header lines from the incoming stream.
- f respond ... - Call the appropriate WSGI app and write its iterable output.
- f send_headers ... - Assert, process, and send the HTTP response message-headers.
- f simple_response ... - Write a simple response back to the client.
- f start_response ... - WSGI callable to begin the HTTP response.
- f write ... - WSGI callable to write unbuffered data to the client.
- f __init__ ...
- f close ... - Close the socket underlying this connection.
- f communicate ... - Read each request and respond appropriately.
- f __init__ ...
- f bind ... - Create (or recreate) the actual socket object.
- f populate_ssl_environ ... - Create WSGI environ entries to be merged into each request.
- f start ... - Run the server forever.
- f stop ... - Gracefully shutdown a server that is serving forever.
- f tick ... - Accept a new connection and put it on the Queue.
- C NoSSLError ... - Exception raised when a client speaks HTTP to an HTTPS socket.
-
C
SSLConnection
...
- A thread-safe wrapper for an SSL.Connection.
- a f ...
- f __init__ ...
- f accept ...
- f bind ...
- f close ...
- f connect ...
- f connect_ex ...
- f fileno ...
- f get_app_data ...
- f get_cipher_list ...
- f get_context ...
- f getpeername ...
- f getsockname ...
- f getsockopt ...
- f listen ...
- f makefile ...
- f pending ...
- f read ...
- f recv ...
- f renegotiate ...
- f send ...
- f sendall ...
- f set_app_data ...
- f set_connect_state ...
- f setblocking ...
- f setsockopt ...
- f shutdown ...
- f sock_shutdown ...
- f state_string ...
- f want_read ...
- f want_write ...
- f write ...
- C SSL_fileobject ... - Faux file object attached to a socket object.
- C WorkerThread ... - Thread which continuously polls a Queue for Connection objects.
- f format_exc ... - Like print_exc() but return a string. Backport for Python 2.3.