There was an error while loading. Please reload this page.
1 parent 9a2646f commit f5a2cadCopy full SHA for f5a2cad
1 file changed
README
@@ -18,6 +18,19 @@
18
include EM::HttpServer
19
20
def process_http_request
21
+
22
+ # the http request details are available via the following instance variables:
23
+ # @http_protocol
24
+ # @http_request_method
25
+ # @http_cookie
26
+ # @http_if_none_match
27
+ # @http_content_type
28
+ # @http_path_info
29
+ # @http_request_uri
30
+ # @http_query_string
31
+ # @http_post_content
32
+ # @http_headers
33
34
response = EM::DelegatedHttpResponse.new(self)
35
response.status = 200
36
response.content_type 'text/html'
0 commit comments