Method: OpenSSL::Buffering#initialize
- Defined in:
- lib/openssl/buffering.rb
#initialize ⇒ Object
Creates an instance of OpenSSL’s buffering IO module.
63 64 65 66 67 68 |
# File 'lib/openssl/buffering.rb', line 63 def initialize(*) super @eof = false @rbuffer = Buffer.new @sync = @io.sync end |