Created
January 23, 2012 15:25
-
-
Save cjolly/1663722 to your computer and use it in GitHub Desktop.
OpenSSL::Buffering monkey patch for handling utf-8 chars in payload
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'openssl' | |
raise "Patching OpenSSL::Buffering may not be necessary in ruby #{RUBY_VERSION}p.#{RUBY_PATCHLEVEL}" unless RUBY_VERSION == "1.9.2" && RUBY_PATCHLEVEL == 290 | |
# See this issue for more info. | |
# http://bugs.ruby-lang.org/issues/5233 | |
module OpenSSL::Buffering | |
private | |
## | |
# Writes +s+ to the buffer. When the buffer is full or #sync is true the | |
# buffer is flushed to the underlying socket. | |
def do_write(s) | |
@wbuffer = "" unless defined? @wbuffer | |
@wbuffer << s | |
@wbuffer.force_encoding(Encoding::BINARY) | |
@sync ||= false | |
if @sync or @wbuffer.size > BLOCK_SIZE or idx = @wbuffer.rindex($/) | |
remain = idx ? idx + $/.size : @wbuffer.length | |
nwritten = 0 | |
while remain > 0 | |
str = @wbuffer[nwritten,remain] | |
begin | |
nwrote = syswrite(str) | |
rescue Errno::EAGAIN | |
retry | |
end | |
remain -= nwrote | |
nwritten += nwrote | |
end | |
@wbuffer[0,nwritten] = "" | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Opened an issue in Rails