rename Transport* into Protocol* (#895)

This commit is contained in:
Alessandro Ros
2025-09-16 12:06:50 +02:00
committed by GitHub
parent ec81d388d1
commit 425fce20fc
13 changed files with 107 additions and 105 deletions

View File

@@ -624,10 +624,10 @@ func TestServerRecord(t *testing.T) {
var proto Protocol
switch ca.transport {
case "udp":
proto = TransportUDP
proto = ProtocolUDP
case "tcp":
proto = TransportTCP
proto = ProtocolTCP
}
var profile headers.TransportProfile