| 5 | ) |
| 6 | |
| 7 | type IPMapper interface { |
| 8 | Alloc(target string) (loopback netip.Addr) |
| 9 | Get(loopback netip.Addr) (target string) |
| 10 | } |
| 11 | |
| 12 | // LoopbackMapper projects something to a loopback IP. |
| 13 | // It is not thread-safe. |
no outgoing calls
no test coverage detected