mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
Add conntracker api
This commit is contained in:
parent
fb82be7f3f
commit
81504dc2c4
1 changed files with 41 additions and 0 deletions
41
common/conntrack/tracker.go
Normal file
41
common/conntrack/tracker.go
Normal file
|
@ -0,0 +1,41 @@
|
|||
package conntrack
|
||||
|
||||
import (
|
||||
"io"
|
||||
"sync"
|
||||
|
||||
"github.com/sagernet/sing/common"
|
||||
"github.com/sagernet/sing/common/x/list"
|
||||
)
|
||||
|
||||
type Tracker struct {
|
||||
access sync.Mutex
|
||||
connections list.List[io.Closer]
|
||||
}
|
||||
|
||||
func (m *Tracker) Track(conn io.Closer) *Registration {
|
||||
m.access.Lock()
|
||||
element := m.connections.PushBack(conn)
|
||||
m.access.Unlock()
|
||||
return &Registration{m, element}
|
||||
}
|
||||
|
||||
func (m *Tracker) Reset() {
|
||||
m.access.Lock()
|
||||
defer m.access.Unlock()
|
||||
for element := m.connections.Front(); element != nil; element = element.Next() {
|
||||
common.Close(element.Value)
|
||||
}
|
||||
m.connections = list.List[io.Closer]{}
|
||||
}
|
||||
|
||||
type Registration struct {
|
||||
manager *Tracker
|
||||
element *list.Element[io.Closer]
|
||||
}
|
||||
|
||||
func (t *Registration) Leave() {
|
||||
t.manager.access.Lock()
|
||||
defer t.manager.access.Unlock()
|
||||
t.manager.connections.Remove(t.element)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue