EndpointLookup is any type which maps from IP to the endpoint owning that IP.
| 17 | |
| 18 | // EndpointLookup is any type which maps from IP to the endpoint owning that IP. |
| 19 | type EndpointLookup interface { |
| 20 | LookupIP(ip netip.Addr) (ep *endpoint.Endpoint) |
| 21 | } |
| 22 | |
| 23 | // endpointInfoRegistry provides a default implementation of the logger.EndpointInfoRegistry interface. |
| 24 | type endpointInfoRegistry struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…