mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 11:57:39 +03:00
udpnat2: Add purge expire ticker
This commit is contained in:
parent
a8285e06a5
commit
7fd3517e4d
1 changed files with 34 additions and 3 deletions
|
@ -3,6 +3,7 @@ package udpnat
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"net/netip"
|
"net/netip"
|
||||||
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/sagernet/sing/common"
|
"github.com/sagernet/sing/common"
|
||||||
|
@ -18,6 +19,10 @@ type Service struct {
|
||||||
handler N.UDPConnectionHandlerEx
|
handler N.UDPConnectionHandlerEx
|
||||||
prepare PrepareFunc
|
prepare PrepareFunc
|
||||||
metrics Metrics
|
metrics Metrics
|
||||||
|
|
||||||
|
timeout time.Duration
|
||||||
|
closeOnce sync.Once
|
||||||
|
doneChan chan struct{}
|
||||||
}
|
}
|
||||||
|
|
||||||
type PrepareFunc func(source M.Socksaddr, destination M.Socksaddr, userData any) (bool, context.Context, N.PacketWriter, N.CloseHandlerFunc)
|
type PrepareFunc func(source M.Socksaddr, destination M.Socksaddr, userData any) (bool, context.Context, N.PacketWriter, N.CloseHandlerFunc)
|
||||||
|
@ -50,12 +55,38 @@ func New(handler N.UDPConnectionHandlerEx, prepare PrepareFunc, timeout time.Dur
|
||||||
conn.Close()
|
conn.Close()
|
||||||
})
|
})
|
||||||
return &Service{
|
return &Service{
|
||||||
cache: cache,
|
cache: cache,
|
||||||
handler: handler,
|
handler: handler,
|
||||||
prepare: prepare,
|
prepare: prepare,
|
||||||
|
timeout: timeout,
|
||||||
|
doneChan: make(chan struct{}),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (s *Service) Start() error {
|
||||||
|
ticker := time.NewTicker(s.timeout)
|
||||||
|
go func() {
|
||||||
|
defer ticker.Stop()
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-ticker.C:
|
||||||
|
s.PurgeExpired()
|
||||||
|
case <-s.doneChan:
|
||||||
|
s.Purge()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *Service) Close() error {
|
||||||
|
s.closeOnce.Do(func() {
|
||||||
|
close(s.doneChan)
|
||||||
|
})
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func (s *Service) NewPacket(bufferSlices [][]byte, source M.Socksaddr, destination M.Socksaddr, userData any) {
|
func (s *Service) NewPacket(bufferSlices [][]byte, source M.Socksaddr, destination M.Socksaddr, userData any) {
|
||||||
conn, loaded := s.cache.Get(source.AddrPort())
|
conn, loaded := s.cache.Get(source.AddrPort())
|
||||||
if !loaded {
|
if !loaded {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue