All Projects → macournoyer → ruby_http_parser

macournoyer / ruby_http_parser

Licence: other
Ruby bindings to Ryan Dahl's http-parser

Programming Languages

c
50402 projects - #5 most used programming language
ruby
36898 projects - #4 most used programming language

UNMAINTAINED!

I don't work on this anymore. See this awesome fork instead: http://github.com/tmm1/http_parser.rb/

And have a nice day, please!

Ruby bindings to Ryan Dahl's http-parser

Ruby bindings to http://github.com/ry/http-parser

Usage

require "net/http/parser"

parser = Net::HTTP::RequestParser.new

parser.on_headers_complete = proc do |env|
  # Rack formatted env hash
  p env
end

parser.on_body = proc do |chunk|
  # One chunk of the body
  p chunk
end

parser.on_message_complete = proc do |env|
  # Headers and body is all parsed
  puts "Done!"
end

# Feed raw data from the socket to the parser
parser << raw_data
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].