diff --git a/net/packet/icmp6_test.go b/net/packet/icmp6_test.go index 0348824b6..51de86a4a 100644 --- a/net/packet/icmp6_test.go +++ b/net/packet/icmp6_test.go @@ -57,7 +57,7 @@ func TestICMPv6Checksum(t *testing.T) { "\x00\x00\x00\x00\x00\x00\x20\x0e\x80\x00\x4a\x9a\x2e\xea\x00\x02" + "\x61\xb1\x9e\xad\x00\x06\x45\xaa" // The packet that we'd originally generated incorrectly, but with the checksum - // bytes fixed per WireShark's correct calculation: + // bytes fixed per Wireshark's correct calculation: const wantRes = "\x60\x00\xf8\xff\x00\x10\x3a\x40\x26\x07\xf8\xb0\x40\x0a\x08\x07" + "\x00\x00\x00\x00\x00\x00\x20\x0e\xfd\x7a\x11\x5c\xa1\xe0\xab\x12" + "\x48\x43\xcd\x96\x62\x7b\x65\x28\x81\x00\x49\x9a\x2e\xea\x00\x02" + diff --git a/net/tlsdial/tlsdial.go b/net/tlsdial/tlsdial.go index ffc8c90a8..46e1454db 100644 --- a/net/tlsdial/tlsdial.go +++ b/net/tlsdial/tlsdial.go @@ -77,7 +77,7 @@ func Config(ht *health.Tracker, base *tls.Config) *tls.Config { if buildfeatures.HasDebug { // If SSLKEYLOGFILE is set, it's a file to which we write our TLS private keys - // in a way that WireShark can read. + // in a way that Wireshark can read. // // See https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format if n := os.Getenv("SSLKEYLOGFILE"); n != "" { diff --git a/tsnet/tsnet.go b/tsnet/tsnet.go index b20ee5ab8..499c1e0b5 100644 --- a/tsnet/tsnet.go +++ b/tsnet/tsnet.go @@ -2030,7 +2030,7 @@ func (s *Server) GetRootPath() string { // debugging, probably not useful for production. // // Packets will be written to the pcap until the process exits. The pcap needs a Lua dissector -// to be installed in WireShark in order to decode properly: wgengine/capture/ts-dissector.lua +// to be installed in Wireshark in order to decode properly: wgengine/capture/ts-dissector.lua // in this repository. // https://tailscale.com/docs/reference/troubleshooting/network-configuration/inspect-unencrypted-packets func (s *Server) CapturePcap(ctx context.Context, pcapFile string) error {