mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-06 20:10:11 +02:00
9 lines
195 B
Go
9 lines
195 B
Go
package constants
|
|
|
|
const (
|
|
// TCP is a network protocol (reliable and slower than UDP).
|
|
TCP string = "tcp"
|
|
// UDP is a network protocol (unreliable and faster than TCP).
|
|
UDP string = "udp"
|
|
)
|