mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-07 04:20:12 +02:00
10 lines
124 B
Go
10 lines
124 B
Go
package models
|
|
|
|
import "net"
|
|
|
|
type OpenVPNConnection struct {
|
|
IP net.IP
|
|
Port uint16
|
|
Protocol NetworkProtocol
|
|
}
|