1 // Package tc - "traffic control" 2 // 3 // Abstracts the tc library and simplifies the 4 // ip manipulation and ematching on tc commands. 5 // 6 // See https://manpages.ubuntu.com/manpages/xenial/man8/tc.8.html for more detail. 7 // 8 // Essentially a wrapper library around https://pkg.go.dev/github.com/vishvananda/netlink 9 // to remove the complexities of traffic control and netlink 10 package tc 11