An Addr represents an address associated with packet routing.
| 14 | |
| 15 | // An Addr represents an address associated with packet routing. |
| 16 | type Addr interface { |
| 17 | // Family returns an address family. |
| 18 | Family() int |
| 19 | } |
| 20 | |
| 21 | // An Inet4Addr represents an internet address for IPv4. |
| 22 | type Inet4Addr struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…