optimize: only print routing log for new connection to avoid the log exploded (Quic and BT).

This commit is contained in:
mzz2017
2023-02-08 21:32:20 +08:00
committed by mzz
parent aa38103fee
commit a20e1a48d8
2 changed files with 24 additions and 20 deletions

View File

@ -212,6 +212,8 @@ getNew:
// This is real dialer.
d := ue.Dialer
if isNew {
// Only print routing for new connection to avoid the log exploded (Quic and BT).
if isDns && c.log.IsLevelEnabled(logrus.DebugLevel) && len(dnsMessage.Questions) > 0 {
q := dnsMessage.Questions[0]
c.log.WithFields(logrus.Fields{
@ -233,6 +235,7 @@ getNew:
RefineSourceToShow(src, destToSend.Addr()), RefineAddrPortToShow(destToSend),
)
}
}
//log.Printf("WriteToUDPAddrPort->%v", destToSend)
_, err = ue.WriteToUDPAddrPort(data, destToSend)
if err != nil {

View File

@ -98,6 +98,7 @@ func (p *UdpEndpointPool) Remove(lAddr netip.AddrPort, udpEndpoint *UdpEndpoint)
}
return nil
}
func (p *UdpEndpointPool) GetOrCreate(lAddr netip.AddrPort, createOption *UdpEndpointOptions) (udpEndpoint *UdpEndpoint, isNew bool, err error) {
p.mu.Lock()
defer p.mu.Unlock()