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

@@ -682,13 +682,13 @@ func TestServerPlay(t *testing.T) {
var proto Protocol
switch ca.transport {
case "udp":
proto = TransportUDP
proto = ProtocolUDP
case "tcp":
proto = TransportTCP
proto = ProtocolTCP
case "multicast":
proto = TransportUDPMulticast
proto = ProtocolUDPMulticast
}
var profile headers.TransportProfile