switch net.tcp.client conn to pointer

This commit is contained in:
Joel Wetzell
2025-12-06 09:02:30 -06:00
parent eaca0dbf86
commit dff5430eb4

View File

@@ -12,7 +12,7 @@ import (
type TCPClient struct { type TCPClient struct {
config ModuleConfig config ModuleConfig
framer framing.Framer framer framing.Framer
conn net.Conn conn *net.TCPConn
router *Router router *Router
Addr *net.TCPAddr Addr *net.TCPAddr
} }