Prevent nil LocalAddr or RemoteAddr

This commit is contained in:
世界
2023-12-05 15:10:51 +08:00
parent 50f5a76380
commit 0ef268637e
2 changed files with 4 additions and 3 deletions

View File

@@ -143,7 +143,7 @@ func (c *GunConn) LocalAddr() net.Addr {
}
func (c *GunConn) RemoteAddr() net.Addr {
return nil
return M.Socksaddr{}
}
func (c *GunConn) SetDeadline(t time.Time) error {