mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
testutils: add a perspective function parameter to ComposeInitialPacket (#4276)
Currently not used, but this is useful when crafting Initial packets sent from the client. No functional change expected.
This commit is contained in:
parent
940feef063
commit
03ba124241
3 changed files with 15 additions and 10 deletions
|
@ -33,10 +33,15 @@ func packRawPayload(version protocol.VersionNumber, frames []wire.Frame) []byte
|
|||
return b
|
||||
}
|
||||
|
||||
// ComposeInitialPacket returns an Initial packet encrypted under key
|
||||
// (the original destination connection ID) containing specified frames
|
||||
func ComposeInitialPacket(srcConnID protocol.ConnectionID, destConnID protocol.ConnectionID, version protocol.VersionNumber, key protocol.ConnectionID, frames []wire.Frame) []byte {
|
||||
sealer, _ := handshake.NewInitialAEAD(key, protocol.PerspectiveServer, version)
|
||||
// ComposeInitialPacket returns an Initial packet encrypted under key (the original destination connection ID)
|
||||
// containing specified frames.
|
||||
func ComposeInitialPacket(
|
||||
srcConnID, destConnID, key protocol.ConnectionID,
|
||||
frames []wire.Frame,
|
||||
sentBy protocol.Perspective,
|
||||
version protocol.VersionNumber,
|
||||
) []byte {
|
||||
sealer, _ := handshake.NewInitialAEAD(key, sentBy, version)
|
||||
|
||||
// compose payload
|
||||
var payload []byte
|
||||
|
@ -48,7 +53,7 @@ func ComposeInitialPacket(srcConnID protocol.ConnectionID, destConnID protocol.C
|
|||
|
||||
// compose Initial header
|
||||
payloadSize := len(payload)
|
||||
pnLength := protocol.PacketNumberLen4
|
||||
const pnLength = protocol.PacketNumberLen4
|
||||
length := payloadSize + int(pnLength) + sealer.Overhead()
|
||||
hdr := &wire.ExtendedHeader{
|
||||
Header: wire.Header{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue