mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
don't accept transport parameters in the NewSessionTicket message
This was recently removed from the WG draft.
This commit is contained in:
parent
d71850eb2f
commit
f0eb5a60f1
2 changed files with 1 additions and 14 deletions
|
@ -63,17 +63,12 @@ func (h *extensionHandlerClient) Receive(hType mint.HandshakeType, el *mint.Exte
|
|||
return err
|
||||
}
|
||||
|
||||
if hType != mint.HandshakeTypeEncryptedExtensions && hType != mint.HandshakeTypeNewSessionTicket {
|
||||
if hType != mint.HandshakeTypeEncryptedExtensions {
|
||||
if found {
|
||||
return fmt.Errorf("Unexpected QUIC extension in handshake message %d", hType)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
if hType == mint.HandshakeTypeNewSessionTicket {
|
||||
// the extension it's optional in the NewSessionTicket message
|
||||
// TODO: handle this
|
||||
return nil
|
||||
}
|
||||
|
||||
// hType == mint.HandshakeTypeEncryptedExtensions
|
||||
if !found {
|
||||
|
|
|
@ -100,14 +100,6 @@ var _ = Describe("TLS Extension Handler, for the client", func() {
|
|||
Expect(err).ToNot(HaveOccurred())
|
||||
})
|
||||
|
||||
// TODO: fix this when implementing the NewSessionTicket
|
||||
It("ignors the TransportParameters in the NewSessionTicket message", func() {
|
||||
err := el.Add(fakeBody)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
err = handler.Receive(mint.HandshakeTypeNewSessionTicket, &el)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
})
|
||||
|
||||
It("errors when it can't parse the TransportParameters", func() {
|
||||
err := el.Add(fakeBody)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue