In Files

  • xmlrpc/httpserver.rb

Parent

Methods

HttpServer

Constants

CRLF

Constants ———————————————–

DEFAULT_HEADER
HTTP_PROTO
SERVER_NAME
StatusCodeMapping

Mapping of status code and error message

Public Class Methods

new(handle_obj, port = 8080, host = DEFAULT_HOST, maxConnections = 4, stdlog = $stdout, audit = true, debug = true) click to toggle source

handle_obj specifies the object, that receives calls to request_handler and ip_auth_handler

 
               # File xmlrpc/httpserver.rb, line 18
def initialize(handle_obj, port = 8080, host = DEFAULT_HOST, maxConnections = 4, 
               stdlog = $stdout, audit = true, debug = true)
  @handler = handle_obj
  super(port, host, maxConnections, stdlog, audit, debug)
end