Class: BitClust::Interface::FCGI

Inherits:
CGI
  • Object
show all
Defined in:
lib/bitclust/interface.rb

Instance Method Summary collapse

Methods inherited from CGI

#do_GET

Instance Method Details

#main(handler) ⇒ Object



71
72
73
74
75
76
# File 'lib/bitclust/interface.rb', line 71

def main(handler)
  @handler = handler
  ::FCGI.each_cgi_request do |req|
    start req.env, req.in, req.out
  end
end