(c1 net.IPNet, c2 net.IPNet)
| 13 | } |
| 14 | |
| 15 | func equalCIDR(c1 net.IPNet, c2 net.IPNet) bool { |
| 16 | if c1.String() == c2.String() { |
| 17 | return true |
| 18 | } |
| 19 | return false |
| 20 | } |
| 21 | |
| 22 | func setUpIPNetFlagSet(ipsp *[]net.IPNet) *FlagSet { |
| 23 | f := NewFlagSet("test", ContinueOnError) |
no test coverage detected