Method: HTTP::Protocol::HTTP2::Connection#send_settings
- Defined in:
- lib/http/protocol/http2/connection.rb
#send_settings(changes) ⇒ Object
135 136 137 138 139 140 141 142 |
# File 'lib/http/protocol/http2/connection.rb', line 135 def send_settings(changes) @local_settings.append(changes) frame = SettingsFrame.new frame.pack(changes) write_frame(frame) end |