Преглед на файлове

Add printing of the needed size of fragmentation buffer.

KOLANICH преди 2 години
родител
ревизия
ef0d413a94
променени са 2 файла, в които са добавени 8 реда и са изтрити 2 реда
  1. 4 1
      src/iface/interface/mod.rs
  2. 4 1
      src/iface/interface/sixlowpan.rs

+ 4 - 1
src/iface/interface/mod.rs

@@ -2196,7 +2196,10 @@ impl<'a> InterfaceInner<'a> {
                         let first_frag_ip_len = self.caps.ip_mtu();
 
                         if buffer.len() < first_frag_ip_len {
-                            net_debug!("Fragmentation buffer is too small");
+                            net_debug!(
+                                "Fragmentation buffer is too small, at least {} needed",
+                                first_frag_ip_len
+                            );
                             return Err(Error::Exhausted);
                         }
 

+ 4 - 1
src/iface/interface/sixlowpan.rs

@@ -400,7 +400,10 @@ impl<'a> InterfaceInner<'a> {
                 match buffer {
                     managed::ManagedSlice::Borrowed(buffer) => {
                         if buffer.len() < total_size {
-                            net_debug!("6LoWPAN: Fragmentation buffer is too small");
+                            net_debug!(
+                                "6LoWPAN: Fragmentation buffer is too small, at least {} needed",
+                                total_size
+                            );
                             return Err(Error::Exhausted);
                         }
                     }