git: 9front

Download patch

ref: 4013d4249cb652171b00ecc58d64f4f57186cf27
parent: 09d4ca5248e694dacda55dbef0c3aaae1d3fd00d
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Sat Apr 20 08:01:37 EDT 2024

snoopy: teach gre about ethernet and ip6 payloads (thanks arne meyer)

teach snoopy about ethernet and ip6 encapsulated in GRE.

--- a/sys/src/cmd/ip/snoopy/gre.c
+++ b/sys/src/cmd/ip/snoopy/gre.c
@@ -64,6 +64,8 @@
 	{"llc",	0x007a, },
 	{"dot1q",	0x8100, },
 	{"eapol",	0x888e, },
+	{"ip6",		0x86dd, },
+	{"ether", 0x6558, },
 	{0},
 };
 
--