Method: HTTP::Protocol::HTTP1::Connection#write_upgrade_body

Defined in:
lib/http/protocol/http1/connection.rb

#write_upgrade_bodyObject



202
203
204
205
206
207
208
209
210
211
212
213
# File 'lib/http/protocol/http1/connection.rb', line 202

def write_upgrade_body
  @stream.write("\r\n")
  @stream.flush
  
  return @stream unless block_given?
  
  begin
    yield @stream
  rescue
    @stream.close_write
  end
end