Skip to content

macournoyer/ruby_http_parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Ruby bindings to Ryan Dahl's http-parser

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published