BFD: minor fixes 74/5074/1
authorKlement Sekera <ksekera@cisco.com>
Wed, 8 Feb 2017 06:42:08 +0000 (07:42 +0100)
committerKlement Sekera <ksekera@cisco.com>
Wed, 8 Feb 2017 06:47:37 +0000 (07:47 +0100)
Change-Id: I1c93f96a752eb2ffd1117a656552131cde1fa489
Signed-off-by: Klement Sekera <ksekera@cisco.com>
src/vnet/bfd/bfd_main.c
src/vnet/bfd/bfd_udp.c

index 798d063..0c5f198 100644 (file)
@@ -526,8 +526,8 @@ bfd_add_sha1_auth_section (vlib_buffer_t * b, bfd_session_t * bs)
   SHA1 ((unsigned char *) pkt, sizeof (*pkt), hash);
   BFD_DBG ("hashing: %U", format_hex_bytes, pkt, sizeof (*pkt));
   clib_memcpy (auth->hash, hash, sizeof (hash));
-#endif
 }
+#endif
 
 static void
 bfd_add_auth_section (vlib_buffer_t * b, bfd_session_t * bs)
index e21b887..e1ff8a9 100644 (file)
@@ -637,8 +637,7 @@ bfd_udp4_verify_transport (const ip4_header_t * ip4,
               expected_ttl);
       return BFD_UDP_ERROR_BAD;
     }
-  if (clib_net_to_host_u16 (udp->src_port) < 49152 ||
-      clib_net_to_host_u16 (udp->src_port) > 65535)
+  if (clib_net_to_host_u16 (udp->src_port) < 49152)
     {
       BFD_ERR ("Invalid UDP src port %u, out of range <49152,65535>",
               udp->src_port);
@@ -805,8 +804,7 @@ bfd_udp6_verify_transport (const ip6_header_t * ip6,
               ip6->hop_limit, expected_hop_limit);
       return BFD_UDP_ERROR_BAD;
     }
-  if (clib_net_to_host_u16 (udp->src_port) < 49152 ||
-      clib_net_to_host_u16 (udp->src_port) > 65535)
+  if (clib_net_to_host_u16 (udp->src_port) < 49152)
     {
       BFD_ERR ("Invalid UDP src port %u, out of range <49152,65535>",
               udp->src_port);