Looks up the destination for a given virtual IP.
(&self, ip: Ipv4Addr)
| 113 | |
| 114 | /// Looks up the destination for a given virtual IP. |
| 115 | pub fn lookup(&self, ip: Ipv4Addr) -> Option<Destination> { |
| 116 | self.ip_to_destination.get(&ip).as_deref().cloned() |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | static VIRTUAL_IP_CACHE: OnceLock<Arc<VirtualIpCache>> = OnceLock::new(); |
no outgoing calls