فهرست منبع

neigh: add fill_with_expiration method

This method is useful when we want to fill the cache with an entry that
has a specific expiration time.
Thibaut Vandervelden 1 سال پیش
والد
کامیت
ece00ac35f
1فایلهای تغییر یافته به همراه14 افزوده شده و 1 حذف شده
  1. 14 1
      src/iface/neighbor.rs

+ 14 - 1
src/iface/neighbor.rs

@@ -72,8 +72,21 @@ impl Cache {
         debug_assert!(protocol_addr.is_unicast());
         debug_assert!(hardware_addr.is_unicast());
 
+        let expires_at = timestamp + Self::ENTRY_LIFETIME;
+        self.fill_with_expiration(protocol_addr, hardware_addr, expires_at);
+    }
+
+    pub fn fill_with_expiration(
+        &mut self,
+        protocol_addr: IpAddress,
+        hardware_addr: HardwareAddress,
+        expires_at: Instant,
+    ) {
+        debug_assert!(protocol_addr.is_unicast());
+        debug_assert!(hardware_addr.is_unicast());
+
         let neighbor = Neighbor {
-            expires_at: timestamp + Self::ENTRY_LIFETIME,
+            expires_at,
             hardware_addr,
         };
         match self.storage.insert(protocol_addr, neighbor) {