mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
append to a byte slice instead of a bytes.Buffer when serializing frames
This commit is contained in:
parent
65dd82ad90
commit
3ca1001951
50 changed files with 443 additions and 425 deletions
|
@ -20,11 +20,15 @@ func writePacket(hdr *wire.ExtendedHeader, data []byte) []byte {
|
|||
|
||||
// packRawPayload returns a new raw payload containing given frames
|
||||
func packRawPayload(version protocol.VersionNumber, frames []wire.Frame) []byte {
|
||||
buf := new(bytes.Buffer)
|
||||
var b []byte
|
||||
for _, cf := range frames {
|
||||
cf.Write(buf, version)
|
||||
var err error
|
||||
b, err = cf.Write(b, version)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
return buf.Bytes()
|
||||
return b
|
||||
}
|
||||
|
||||
// ComposeInitialPacket returns an Initial packet encrypted under key
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue