search for: http_parser

Displaying 10 results from an estimated 10 matches for "http_parser".

Did you mean: http_parser_t
2013 Jul 15
2
linking modules - add needed libraries
...ayer/10/httpuv/src/libuv' gmake[1]: `libuv.a' is up to date. gmake[1]: Leaving directory `/h/u036sumida/mayer/10/httpuv/src/libuv' gmake --directory=http-parser \ CC="gcc -std=gnu99" CFLAGS="-g -O2 -fPIC" AR="ar" RANLIB="ranlib" \ http_parser.o gmake[1]: Entering directory `/h/u036sumida/mayer/10/httpuv/src/http-parser' gmake[1]: `http_parser.o' is up to date. gmake[1]: Leaving directory `/h/u036sumida/mayer/10/httpuv/src/http-parser' (cd sha1 && gcc -std=gnu99 -g -O2 -fPIC -c sha1.c -o sha1.o) In file included from...
2015 Apr 14
1
httpuv not installing on fedora 19
...'m only showing the end of the install messages. Things go okay for a good while ). INSTALLATION MESSAGES #================================================================ make[1]: Entering directory `/tmp/RtmpCjtWgG/R.INSTALL61c04bffaabb/httpuv/src/http-parser' gcc -m64 -std=gnu99 -I. -DHTTP_PARSER_STRICT=0 -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -fpic -O3 -c http_parser.c make[1]: Leaving directory `/tmp/RtmpCjtWgG/R.INSTALL61c04bffaabb/httpuv/src/http-parser' (cd sha1 && gcc...
2015 Apr 14
1
httpuv not installing on fedora 19
...essages. Things > go okay for a good while? ). > > INSTALLATION MESSAGES > #================================================================ > > make[1]: Entering directory > `/tmp/RtmpCjtWgG/R.INSTALL61c04bffaabb/httpuv/src/http-parser' > gcc -m64 -std=gnu99 -I. -DHTTP_PARSER_STRICT=0? -O2 -g -pipe -Wall > -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector > --param=ssp-buffer-size=4 -grecord-gcc-switches? -m64 -mtune=generic? -fpic > -O3? -c http_parser.c > make[1]: Leaving directory > `/tmp/RtmpCjtWgG/R.INSTALL61c04bffaabb/httpuv/src/http-parse...
2010 Jan 09
8
X-Forwarded-Proto / X_FORWARDED_PROTO
Eric, think I came across an issue with the parser in unicorn, with a request (due to 2 layers of nginx proxying) coming across with both a X_FORWARDED_PROTO and a X-Forwarded-Proto header. From the socket (in HttpRequest) - we get: X_FORWARDED_PROTO: http X-Forwarded-Proto: https which is parsed to HTTP_X_FORWARDED_PROTO"=>"http,https There was a passenger ticket that
2006 Oct 15
14
Mongrel can''t handle some URLs that IE6 sends
IE6 happily sends unsafe* characters unencoded if you''ve typed them into the URL bar of your IE6 window. This could happen if you copy & paste a URL from an email or web page. Mongrel doesn''t seem to handle these properly. In 0.3.13.3 it would print out something like: Sun Oct 15 23:05:38 CST 2006: BAD CLIENT (192.168.1.2): Invalid HTTP format, parsing fails. 0.3.13.5
2015 Apr 14
0
httpuv not installing on fedora 19
...INSTALLATION MESSAGES<br /> > #================================================================<br /> ><br /> > make[1]: Entering directory<br /> > `/tmp/RtmpCjtWgG/R.INSTALL61c04bffaabb/httpuv/src/http-parser'<br /> > gcc -m64 -std=gnu99 -I. -DHTTP_PARSER_STRICT=0  -O2 -g -pipe -Wall<br /> > -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector<br /> > --param=ssp-buffer-size=4 -grecord-gcc-switches  -m64 -mtune=generic  -fpic<br /> > -O3  -c http_parser.c<br /> > make[1]: Leaving directory<br /> >...
2013 Jan 24
2
SIGSEGV at shutdown (was: Re: your mail)
...hine-1.0.0.rc.4/lib/rubyeventmachine.so vendor/bundle/ruby/1.9.1/gems/eventmachine-1.0.0.rc.4/lib/fastfilereaderext.so vendor/bundle/ruby/1.9.1/gems/escape_utils-0.2.4/ext/escape_utils/escape_utils.so vendor/bundle/ruby/1.9.1/gems/escape_utils-0.2.4/lib/escape_utils.so vendor/bundle/ruby/1.9.1/gems/http_parser.rb-0.5.3/ext/ruby_http_parser/ruby_http_parser.so vendor/bundle/ruby/1.9.1/gems/http_parser.rb-0.5.3/lib/ruby_http_parser.so vendor/bundle/ruby/1.9.1/gems/json-1.7.4/ext/json/ext/generator/generator.so vendor/bundle/ruby/1.9.1/gems/json-1.7.4/ext/json/ext/parser/parser.so vendor/bundle/ruby/1.9.1/g...
2009 Sep 15
0
HTTP parser C extension should be Rubinius-compatible
Hi all, I''ve just pushed out some changes to the C HTTP parser that should make it compatible with a recent Rubinius[1] using the C API. While I got the http_parser and http_parser_ng tests to pass with the new changes, most of the other tests that use pure Ruby actually failed(!). If anybody wants to pick up where I left off (even if it''s to properly report bugs to the Rubinius team), please do so. I''m not quite motivated enough to do much...
2010 Jun 02
8
Read error: #<TypeError: can't modify frozen string> raised from HttpParser
Hey guys, Started running unicorn in a production server like two weeks ago. It''s been running smoothly, but looking at the logs found 44 exceptions like this: E, [2010-06-02T16:17:15.117071 #22680] ERROR -- : Read error: #<TypeError: can''t modify frozen string> E, [2010-06-02T16:17:15.117270 #22680] ERROR -- :
2008 Jan 14
29
Ebb Web Server
Hello Mongrel Users, I''m writing a web server called Ebb. It''s written in C, makes use of the Mongrel HTTP parser, and uses libev its event loop. The goal is to be small, fast, and language independent server that can host web frameworks. I have written a small Ruby binding which provides a Rack handler - this will allow Ebb to host Rails, Merb, and other Ruby frameworks. In the