mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-14 04:39:33 +00:00
16 lines
182 B
Go
16 lines
182 B
Go
package netlink
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
type Fou struct {
|
|
Family int
|
|
Port int
|
|
Protocol int
|
|
EncapType int
|
|
Local net.IP
|
|
Peer net.IP
|
|
PeerPort int
|
|
IfIndex int
|
|
}
|