(val []net.IP, p *[]net.IP)
| 14 | } |
| 15 | |
| 16 | func newIPSliceValue(val []net.IP, p *[]net.IP) *ipSliceValue { |
| 17 | ipsv := new(ipSliceValue) |
| 18 | ipsv.value = p |
| 19 | *ipsv.value = val |
| 20 | return ipsv |
| 21 | } |
| 22 | |
| 23 | // Set converts, and assigns, the comma-separated IP argument string representation as the []net.IP value of this flag. |
| 24 | // If Set is called on a flag that already has a []net.IP assigned, the newly converted values will be appended. |
no outgoing calls
no test coverage detected