| 43 | type ICMPCode uint8 |
| 44 | |
| 45 | type ICMPControl struct { |
| 46 | Type ICMPType `json:"type,omitempty"` |
| 47 | Code *ICMPCode `json:"code,omitempty"` |
| 48 | } |
| 49 | |
| 50 | // IPRangeFromIP creates an IPRange containing a single IP |
| 51 | func IPRangeFromIP(ip net.IP) IPRange { |
nothing calls this directly
no outgoing calls
no test coverage detected