mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-14 04:43:17 +00:00
44 lines
839 B
Go
44 lines
839 B
Go
package conntrack
|
|
|
|
import (
|
|
"io"
|
|
"sync"
|
|
|
|
"github.com/sagernet/sing/common"
|
|
"github.com/sagernet/sing/common/x/list"
|
|
)
|
|
|
|
var (
|
|
connAccess sync.RWMutex
|
|
openConnection list.List[*ConnEntry]
|
|
)
|
|
|
|
type ConnEntry struct {
|
|
Conn io.Closer
|
|
Stack []byte
|
|
}
|
|
|
|
func Count() int {
|
|
return openConnection.Len()
|
|
}
|
|
|
|
func List() []*ConnEntry {
|
|
connAccess.RLock()
|
|
defer connAccess.RUnlock()
|
|
connList := make([]*ConnEntry, 0, openConnection.Len())
|
|
for element := openConnection.Front(); element != nil; element = element.Next() {
|
|
connList = append(connList, element.Value)
|
|
}
|
|
return connList
|
|
}
|
|
|
|
func Close() {
|
|
connAccess.Lock()
|
|
defer connAccess.Unlock()
|
|
for element := openConnection.Front(); element != nil; element = element.Next() {
|
|
common.Close(element.Value.Conn)
|
|
element.Value = nil
|
|
}
|
|
openConnection = list.List[*ConnEntry]{}
|
|
}
|