svn commit: r308347 - head/usr.sbin/traceroute6

Hiroki Sato hrs at FreeBSD.org
Sat Nov 5 18:00:37 UTC 2016


Author: hrs
Date: Sat Nov  5 18:00:36 2016
New Revision: 308347
URL: https://svnweb.freebsd.org/changeset/base/308347

Log:
  Fix an infinite loop at an non-responding hop when other echo replies
  are kept arriving in the waittime time window.
  
  Submitted by:	Denny Page
  PR:		210286
  MFC after:	3 days

Modified:
  head/usr.sbin/traceroute6/traceroute6.c

Modified: head/usr.sbin/traceroute6/traceroute6.c
==============================================================================
--- head/usr.sbin/traceroute6/traceroute6.c	Sat Nov  5 17:02:38 2016	(r308346)
+++ head/usr.sbin/traceroute6/traceroute6.c	Sat Nov  5 18:00:36 2016	(r308347)
@@ -955,6 +955,9 @@ main(argc, argv)
 						break;
 					}
 					break;
+				} else if (deltaT(&t1, &t2) > waittime * 1000) {
+					cc = 0;
+					break;
 				}
 			}
 			if (cc == 0)


More information about the svn-src-all mailing list