Kaynağa Gözat

Add printing of the needed size of fragmentation buffer.

KOLANICH 2 yıl önce
ebeveyn
işleme
ef0d413a94

+ 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);
                         }
                     }