Module BaseHTTPServer :: Class HTTPServer
[show private | hide private]
[frames | no frames]

Class HTTPServer

BaseServer --+    
             |    
     TCPServer --+
                 |
                HTTPServer

Known Subclasses:
web_interface_server

Method Summary
  server_bind(self)
Override server_bind to store the server name.
    Inherited from TCPServer
  __init__(self, server_address, RequestHandlerClass)
Constructor.
  close_request(self, request)
Called to clean up an individual request.
  fileno(self)
Return socket file number.
  get_request(self)
Get the request and client address from the socket.
  server_activate(self)
Called by constructor to activate the server.
  server_close(self)
Called to clean-up the server.
    Inherited from BaseServer
  finish_request(self, request, client_address)
Finish one request by instantiating RequestHandlerClass.
  handle_error(self, request, client_address)
Handle an error gracefully.
  handle_request(self)
Handle one request, possibly blocking.
  process_request(self, request, client_address)
Call finish_request.
  serve_forever(self)
Handle one request at a time until doomsday.
  verify_request(self, request, client_address)
Verify the request.

Class Variable Summary
int allow_reuse_address = 1                                                                     
    Inherited from TCPServer
int address_family = 2                                                                     
int request_queue_size = 5                                                                     
int socket_type = 1                                                                     

Method Details

server_bind(self)

Override server_bind to store the server name.
Overrides:
SocketServer.TCPServer.server_bind

Class Variable Details

allow_reuse_address

Type:
int
Value:
1                                                                     

Generated by Epydoc 2.1 on Fri Jul 27 17:40:03 2007 http://epydoc.sf.net