From d1d8439b8e204ae43b85ed1380a6f3d8d6d0f7b2 Mon Sep 17 00:00:00 2001 From: JackDoan Date: Wed, 13 May 2026 12:09:39 -0500 Subject: [PATCH] fix --- inside.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inside.go b/inside.go index c0ce98a6..de23713e 100644 --- a/inside.go +++ b/inside.go @@ -95,7 +95,7 @@ func (f *Interface) consumeInsidePacket(pkt tio.Packet, fwPacket *firewall.Packe dropReason := f.firewall.Drop(*fwPacket, false, hostinfo, f.pki.GetCAPool(), localCache) if dropReason == nil { - f.sendInsideMessage(hostinfo, pkt, nb, sendBatch, rejectBuf, q) + f.sendInsideMessage(hostinfo, pkt, nb, sendBatch) } else { f.rejectInside(packet, rejectBuf, q) if f.l.Enabled(context.Background(), slog.LevelDebug) { @@ -141,7 +141,7 @@ func (f *Interface) sendInsideEncrypt(hostinfo *HostInfo, ci *ConnectionState, s // scratch arena: SegmentSuperpacket builds each segment's plaintext in // segScratch[:segLen] in turn, and we encrypt directly into a fresh // SendBatch slot. -func (f *Interface) sendInsideMessage(hostinfo *HostInfo, pkt tio.Packet, nb []byte, sendBatch batch.TxBatcher, rejectBuf []byte, q int) { +func (f *Interface) sendInsideMessage(hostinfo *HostInfo, pkt tio.Packet, nb []byte, sendBatch batch.TxBatcher) { ci := hostinfo.ConnectionState if ci.eKey == nil { return