File: fou.go

package info (click to toggle)
golang-github-vishvananda-netlink 1.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid
  • size: 1,648 kB
  • sloc: makefile: 25
file content (16 lines) | stat: -rw-r--r-- 182 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
}