-- ipNetSlice Value
| 9 | |
| 10 | // -- ipNetSlice Value |
| 11 | type ipNetSliceValue struct { |
| 12 | value *[]net.IPNet |
| 13 | changed bool |
| 14 | } |
| 15 | |
| 16 | func newIPNetSliceValue(val []net.IPNet, p *[]net.IPNet) *ipNetSliceValue { |
| 17 | ipnsv := new(ipNetSliceValue) |
nothing calls this directly
no outgoing calls
no test coverage detected