Module Name:    src
Committed By:   christos
Date:           Sun Mar  7 15:03:32 UTC 2021

Modified Files:
        src/sys/netinet6: ip6_id.c

Log Message:
Amend missed messages:

netinet6: Pick IPv6 fragment ids uniformly at random.

Expected number of packets before collision is ~2^16, about the same
as we get for IPv4 with alternating disjoint random cycles.  Keep it
simple unless we determine we really need something much better for
IPv6 than what IPv4 can achieve anyway.

netinet6: Rip out now-unused IPv6 fragment id logic.

(from riastradh)


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/sys/netinet6/ip6_id.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/netinet6/ip6_id.c
diff -u src/sys/netinet6/ip6_id.c:1.20 src/sys/netinet6/ip6_id.c:1.21
--- src/sys/netinet6/ip6_id.c:1.20	Sun Mar  7 09:59:36 2021
+++ src/sys/netinet6/ip6_id.c	Sun Mar  7 10:03:32 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: ip6_id.c,v 1.20 2021/03/07 14:59:36 christos Exp $	*/
+/*	$NetBSD: ip6_id.c,v 1.21 2021/03/07 15:03:32 christos Exp $	*/
 
 /*-
  * Copyright (c) 2020 The NetBSD Foundation, Inc.
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ip6_id.c,v 1.20 2021/03/07 14:59:36 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ip6_id.c,v 1.21 2021/03/07 15:03:32 christos Exp $");
 
 #include <sys/types.h>
 #include <sys/cprng.h>

Reply via email to