浏览代码

Formatting. NFC.

whitequark 7 年之前
父节点
当前提交
70248c5109
共有 4 个文件被更改,包括 21 次插入31 次删除
  1. 7 7
      src/wire/icmpv4.rs
  2. 2 4
      src/wire/ipv4.rs
  3. 9 14
      src/wire/tcp.rs
  4. 3 6
      src/wire/udp.rs

+ 7 - 7
src/wire/icmpv4.rs

@@ -385,10 +385,11 @@ pub enum Repr<'a> {
 impl<'a> Repr<'a> {
 impl<'a> Repr<'a> {
     /// Parse an Internet Control Message Protocol version 4 packet and return
     /// Parse an Internet Control Message Protocol version 4 packet and return
     /// a high-level representation.
     /// a high-level representation.
-    pub fn parse<T: AsRef<[u8]> + ?Sized>(packet: &Packet<&'a T>, checksum_caps: &ChecksumCapabilities) -> Result<Repr<'a>> {
-        if checksum_caps.icmpv4.rx() && !packet.verify_checksum() { 
-            return Err(Error::Checksum) 
-        }
+    pub fn parse<T>(packet: &Packet<&'a T>, checksum_caps: &ChecksumCapabilities)
+                   -> Result<Repr<'a>>
+                where T: AsRef<[u8]> + ?Sized {
+        // Valid checksum is expected.
+        if checksum_caps.icmpv4.rx() && !packet.verify_checksum() { return Err(Error::Checksum) }
 
 
         match (packet.msg_type(), packet.msg_code()) {
         match (packet.msg_type(), packet.msg_code()) {
             (Message::EchoRequest, 0) => {
             (Message::EchoRequest, 0) => {
@@ -446,9 +447,8 @@ impl<'a> Repr<'a> {
 
 
     /// Emit a high-level representation into an Internet Control Message Protocol version 4
     /// Emit a high-level representation into an Internet Control Message Protocol version 4
     /// packet.
     /// packet.
-    pub fn emit<T: AsRef<[u8]> + AsMut<[u8]> + ?Sized>(&self, 
-                                                       packet: &mut Packet<&mut T>, 
-                                                       checksum_caps: &ChecksumCapabilities) {
+    pub fn emit<T>(&self, packet: &mut Packet<&mut T>, checksum_caps: &ChecksumCapabilities)
+            where T: AsRef<[u8]> + AsMut<[u8]> + ?Sized {
         packet.set_msg_code(0);
         packet.set_msg_code(0);
         match self {
         match self {
             &Repr::EchoRequest { ident, seq_no, data } => {
             &Repr::EchoRequest { ident, seq_no, data } => {

+ 2 - 4
src/wire/ipv4.rs

@@ -402,14 +402,12 @@ pub struct Repr {
 
 
 impl Repr {
 impl Repr {
     /// Parse an Internet Protocol version 4 packet and return a high-level representation.
     /// Parse an Internet Protocol version 4 packet and return a high-level representation.
-    pub fn parse<T: AsRef<[u8]> + ?Sized>(packet: &Packet<&T>, 
+    pub fn parse<T: AsRef<[u8]> + ?Sized>(packet: &Packet<&T>,
                                           checksum_caps: &ChecksumCapabilities) -> Result<Repr> {
                                           checksum_caps: &ChecksumCapabilities) -> Result<Repr> {
         // Version 4 is expected.
         // Version 4 is expected.
         if packet.version() != 4 { return Err(Error::Malformed) }
         if packet.version() != 4 { return Err(Error::Malformed) }
         // Valid checksum is expected.
         // Valid checksum is expected.
-        if checksum_caps.ipv4.rx() {
-            if !packet.verify_checksum() { return Err(Error::Checksum) }
-        }
+        if checksum_caps.ipv4.rx() && !packet.verify_checksum() { return Err(Error::Checksum) }
         // We do not support fragmentation.
         // We do not support fragmentation.
         if packet.more_frags() || packet.frag_offset() != 0 { return Err(Error::Fragmented) }
         if packet.more_frags() || packet.frag_offset() != 0 { return Err(Error::Fragmented) }
         // Total length may not be less than header length.
         // Total length may not be less than header length.

+ 9 - 14
src/wire/tcp.rs

@@ -643,18 +643,15 @@ pub struct Repr<'a> {
 
 
 impl<'a> Repr<'a> {
 impl<'a> Repr<'a> {
     /// Parse a Transmission Control Protocol packet and return a high-level representation.
     /// Parse a Transmission Control Protocol packet and return a high-level representation.
-    pub fn parse<T: ?Sized>(packet: &Packet<&'a T>,
-                            src_addr: &IpAddress,
-                            dst_addr: &IpAddress,
-                            checksum_caps: &ChecksumCapabilities) -> Result<Repr<'a>>
-            where T: AsRef<[u8]> {
+    pub fn parse<T>(packet: &Packet<&'a T>, src_addr: &IpAddress, dst_addr: &IpAddress,
+                    checksum_caps: &ChecksumCapabilities) -> Result<Repr<'a>>
+            where T: AsRef<[u8]> + ?Sized {
         // Source and destination ports must be present.
         // Source and destination ports must be present.
         if packet.src_port() == 0 { return Err(Error::Malformed) }
         if packet.src_port() == 0 { return Err(Error::Malformed) }
         if packet.dst_port() == 0 { return Err(Error::Malformed) }
         if packet.dst_port() == 0 { return Err(Error::Malformed) }
-        
-        // Valid checksum is expected...
-        if checksum_caps.tcpv4.rx() && !packet.verify_checksum(src_addr, dst_addr) { 
-            return Err(Error::Checksum) 
+        // Valid checksum is expected.
+        if checksum_caps.tcpv4.rx() && !packet.verify_checksum(src_addr, dst_addr) {
+            return Err(Error::Checksum)
         }
         }
 
 
         let control =
         let control =
@@ -717,10 +714,8 @@ impl<'a> Repr<'a> {
     }
     }
 
 
     /// Emit a high-level representation into a Transmission Control Protocol packet.
     /// Emit a high-level representation into a Transmission Control Protocol packet.
-    pub fn emit<T>(&self, packet: &mut Packet<&mut T>,
-                          src_addr: &IpAddress, 
-                          dst_addr: &IpAddress,
-                          checksum_caps: &ChecksumCapabilities)
+    pub fn emit<T>(&self, packet: &mut Packet<&mut T>, src_addr: &IpAddress, dst_addr: &IpAddress,
+                   checksum_caps: &ChecksumCapabilities)
             where T: AsRef<[u8]> + AsMut<[u8]> + ?Sized {
             where T: AsRef<[u8]> + AsMut<[u8]> + ?Sized {
         packet.set_src_port(self.src_port);
         packet.set_src_port(self.src_port);
         packet.set_dst_port(self.dst_port);
         packet.set_dst_port(self.dst_port);
@@ -748,7 +743,7 @@ impl<'a> Repr<'a> {
         }
         }
         packet.set_urgent_at(0);
         packet.set_urgent_at(0);
         packet.payload_mut().copy_from_slice(self.payload);
         packet.payload_mut().copy_from_slice(self.payload);
-        
+
         if checksum_caps.tcpv4.tx() {
         if checksum_caps.tcpv4.tx() {
             packet.fill_checksum(src_addr, dst_addr)
             packet.fill_checksum(src_addr, dst_addr)
         } else {
         } else {

+ 3 - 6
src/wire/udp.rs

@@ -202,14 +202,11 @@ pub struct Repr<'a> {
 
 
 impl<'a> Repr<'a> {
 impl<'a> Repr<'a> {
     /// Parse an User Datagram Protocol packet and return a high-level representation.
     /// Parse an User Datagram Protocol packet and return a high-level representation.
-    pub fn parse<T: ?Sized>(packet: &Packet<&'a T>,
-                            src_addr: &IpAddress,
-                            dst_addr: &IpAddress,
-                            checksum_caps: &ChecksumCapabilities) -> Result<Repr<'a>>
-            where T: AsRef<[u8]> {
+    pub fn parse<T>(packet: &Packet<&'a T>, src_addr: &IpAddress, dst_addr: &IpAddress,
+                    checksum_caps: &ChecksumCapabilities) -> Result<Repr<'a>>
+            where T: AsRef<[u8]> + ?Sized {
         // Destination port cannot be omitted (but source port can be).
         // Destination port cannot be omitted (but source port can be).
         if packet.dst_port() == 0 { return Err(Error::Malformed) }
         if packet.dst_port() == 0 { return Err(Error::Malformed) }
-
         // Valid checksum is expected...
         // Valid checksum is expected...
         if checksum_caps.udpv4.rx() && !packet.verify_checksum(src_addr, dst_addr) {
         if checksum_caps.udpv4.rx() && !packet.verify_checksum(src_addr, dst_addr) {
             match (src_addr, dst_addr) {
             match (src_addr, dst_addr) {