mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 05:31:18 +08:00
34 lines
541 B
Go
34 lines
541 B
Go
package ebpf
|
|
|
|
import (
|
|
"net/netip"
|
|
|
|
C "github.com/Dreamacro/clash/constant"
|
|
"github.com/Dreamacro/clash/transport/socks5"
|
|
)
|
|
|
|
type TcEBpfProgram struct {
|
|
pros []C.EBpf
|
|
rawNICs []string
|
|
}
|
|
|
|
func (t *TcEBpfProgram) RawNICs() []string {
|
|
return t.rawNICs
|
|
}
|
|
|
|
func (t *TcEBpfProgram) Close() {
|
|
for _, p := range t.pros {
|
|
p.Close()
|
|
}
|
|
}
|
|
|
|
func (t *TcEBpfProgram) Lookup(srcAddrPort netip.AddrPort) (addr socks5.Addr, err error) {
|
|
for _, p := range t.pros {
|
|
addr, err = p.Lookup(srcAddrPort)
|
|
if err == nil {
|
|
return
|
|
}
|
|
}
|
|
return
|
|
}
|