()
| 281 | } |
| 282 | |
| 283 | func (t *tcShaper) initializeInterface() error { |
| 284 | return t.execAndLog("tc", "qdisc", "add", "dev", t.iface, "root", "handle", "1:", "htb", "default", "30") |
| 285 | } |
| 286 | |
| 287 | func (t *tcShaper) Reset(cidr string) error { |
| 288 | classAndHandle, found, err := t.findCIDRClass(cidr) |
no test coverage detected