mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
make it possible to set settings unknown to the http3 package
This commit is contained in:
parent
57461e01b5
commit
a54816867f
8 changed files with 27 additions and 17 deletions
|
@ -42,6 +42,7 @@ type roundTripperOpts struct {
|
|||
DisableCompression bool
|
||||
EnableDatagram bool
|
||||
MaxHeaderBytes int64
|
||||
AdditionalSettings map[uint64]uint64
|
||||
}
|
||||
|
||||
// client is a HTTP3 client doing requests
|
||||
|
@ -130,7 +131,7 @@ func (c *client) setupConn() error {
|
|||
buf := &bytes.Buffer{}
|
||||
quicvarint.Write(buf, streamTypeControlStream)
|
||||
// send the SETTINGS frame
|
||||
(&settingsFrame{Datagram: c.opts.EnableDatagram}).Write(buf)
|
||||
(&settingsFrame{Datagram: c.opts.EnableDatagram, Other: c.opts.AdditionalSettings}).Write(buf)
|
||||
_, err = str.Write(buf.Bytes())
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue