mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
make the protocol package internal
This commit is contained in:
parent
524ecb5827
commit
f1ada87dcf
133 changed files with 185 additions and 123 deletions
15
internal/protocol/encryption_level_test.go
Normal file
15
internal/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