mirror of
https://github.com/xjasonlyu/tun2socks.git
synced 2025-10-07 01:33:15 +08:00
12 lines
95 B
Go
12 lines
95 B
Go
package core
|
|
|
|
import (
|
|
"sync"
|
|
)
|
|
|
|
var udpConns sync.Map
|
|
|
|
type udpConnId struct {
|
|
src string
|
|
}
|