Skip to content

Instantly share code, notes, and snippets.

@cjolly
Created January 23, 2012 15:25
Show Gist options
  • Save cjolly/1663722 to your computer and use it in GitHub Desktop.
Save cjolly/1663722 to your computer and use it in GitHub Desktop.
OpenSSL::Buffering monkey patch for handling utf-8 chars in payload
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
@cjolly
Copy link
Author

cjolly commented Jan 23, 2012

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment