Method: OpenSSL::Buffering#flush
- Defined in:
- lib/openssl/buffering.rb
#flush ⇒ Object
Flushes buffered data to the SSLSocket.
471 472 473 474 475 476 477 478 |
# File 'lib/openssl/buffering.rb', line 471 def flush osync = @sync @sync = true do_write "" return self ensure @sync = osync end |