| 21 | ) |
| 22 | |
| 23 | type CounterObj struct { |
| 24 | Table *Table |
| 25 | Name string // e.g. “fwded” |
| 26 | |
| 27 | Bytes uint64 |
| 28 | Packets uint64 |
| 29 | } |
| 30 | |
| 31 | func (c *CounterObj) unmarshal(ad *netlink.AttributeDecoder) error { |
| 32 | for ad.Next() { |
nothing calls this directly
no outgoing calls
no test coverage detected