Method: Protocol::HTTP2::Connection#send_settings
- Defined in:
- lib/protocol/http2/connection.rb
#send_settings(changes) ⇒ Object
184 185 186 187 188 189 190 191 |
# File 'lib/protocol/http2/connection.rb', line 184 def send_settings(changes) @local_settings.append(changes) frame = SettingsFrame.new frame.pack(changes) write_frame(frame) end |