fou.go 182 B

12345678910111213141516
  1. package netlink
  2. import (
  3. "net"
  4. )
  5. type Fou struct {
  6. Family int
  7. Port int
  8. Protocol int
  9. EncapType int
  10. Local net.IP
  11. Peer net.IP
  12. PeerPort int
  13. IfIndex int
  14. }