From c073eebe424e56b41a2012bb9575b5898521589e Mon Sep 17 00:00:00 2001 From: JackDoan Date: Thu, 2 Oct 2025 17:19:22 -0500 Subject: [PATCH] fixy fixy --- handshake_manager.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/handshake_manager.go b/handshake_manager.go index 5f2c254..ee72d71 100644 --- a/handshake_manager.go +++ b/handshake_manager.go @@ -68,14 +68,14 @@ type HandshakeManager struct { type HandshakeHostInfo struct { sync.Mutex - startTime time.Time // Time that we first started trying with this handshake - ready bool // Is the handshake ready - counter int64 // How many attempts have we made so far - lastRemotes []netip.AddrPort // Remotes that we sent to during the previous attempt - packetStore []*cachedPacket // A set of packets to be transmitted once the handshake completes + startTime time.Time // Time that we first started trying with this handshake + ready bool // Is the handshake ready + initiatingVersionOverride cert.Version // Should we use a non-default cert version for this handshake? + counter int64 // How many attempts have we made so far + lastRemotes []netip.AddrPort // Remotes that we sent to during the previous attempt + packetStore []*cachedPacket // A set of packets to be transmitted once the handshake completes - hostinfo *HostInfo - initiatingVersionOverride cert.Version + hostinfo *HostInfo } func (hh *HandshakeHostInfo) cachePacket(l *logrus.Logger, t header.MessageType, st header.MessageSubType, packet []byte, f packetCallback, m *cachedPacketMetrics) {