mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
log the encryption level of sent and received packets
This commit is contained in:
parent
1bd1a9e0e5
commit
b84e945868
3 changed files with 35 additions and 4 deletions
15
protocol/encryption_level_test.go
Normal file
15
protocol/encryption_level_test.go
Normal file
|
@ -0,0 +1,15 @@
|
|||
package protocol
|
||||
|
||||
import (
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
)
|
||||
|
||||
var _ = Describe("Encryption Level", func() {
|
||||
It("has the correct string representation", func() {
|
||||
Expect(EncryptionUnspecified.String()).To(Equal("unknown"))
|
||||
Expect(EncryptionUnencrypted.String()).To(Equal("unencrypted"))
|
||||
Expect(EncryptionSecure.String()).To(Equal("encrypted (not forward-secure)"))
|
||||
Expect(EncryptionForwardSecure.String()).To(Equal("forward-secure"))
|
||||
})
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue