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