mirror of
https://github.com/MetaCubeX/ClashMetaForAndroid.git
synced 2025-04-03 13:53:34 +03:00
Fix: fix update profile dial
This commit is contained in:
parent
d93a7af534
commit
b7af3f7341
2 changed files with 50 additions and 3 deletions
|
@ -2,7 +2,6 @@ package app
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"net"
|
"net"
|
||||||
"strings"
|
|
||||||
"syscall"
|
"syscall"
|
||||||
|
|
||||||
"cfa/native/platform"
|
"cfa/native/platform"
|
||||||
|
@ -16,10 +15,15 @@ func MarkSocket(fd int) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func QuerySocketUid(source, target net.Addr) int {
|
func QuerySocketUid(source, target net.Addr) int {
|
||||||
protocol := syscall.IPPROTO_TCP
|
var protocol int
|
||||||
|
|
||||||
if strings.HasPrefix(source.String(), "udp") {
|
switch source.Network() {
|
||||||
|
case "udp", "udp4", "udp6":
|
||||||
protocol = syscall.IPPROTO_UDP
|
protocol = syscall.IPPROTO_UDP
|
||||||
|
case "tcp", "tcp4", "tcp6":
|
||||||
|
protocol = syscall.IPPROTO_TCP
|
||||||
|
default:
|
||||||
|
return -1
|
||||||
}
|
}
|
||||||
|
|
||||||
if PlatformVersion() < 29 {
|
if PlatformVersion() < 29 {
|
||||||
|
|
43
core/src/main/golang/native/tunnel/init.go
Normal file
43
core/src/main/golang/native/tunnel/init.go
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
package tunnel
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"net"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"github.com/Dreamacro/clash/component/dialer"
|
||||||
|
C "github.com/Dreamacro/clash/constant"
|
||||||
|
CTX "github.com/Dreamacro/clash/context"
|
||||||
|
"github.com/Dreamacro/clash/tunnel"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
dialer.DefaultTunnelDialer = func(context context.Context, network, address string) (net.Conn, error) {
|
||||||
|
if !strings.HasPrefix(network, "tcp") {
|
||||||
|
return nil, net.UnknownNetworkError("unsupported network")
|
||||||
|
}
|
||||||
|
|
||||||
|
host, port, err := net.SplitHostPort(address)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
left, right := net.Pipe()
|
||||||
|
|
||||||
|
metadata := &C.Metadata{
|
||||||
|
NetWork: C.TCP,
|
||||||
|
Type: C.HTTPCONNECT,
|
||||||
|
SrcIP: net.ParseIP("127.0.0.1"),
|
||||||
|
SrcPort: "65535",
|
||||||
|
DstPort: port,
|
||||||
|
AddrType: C.AtypDomainName,
|
||||||
|
Host: host,
|
||||||
|
RawSrcAddr: left.RemoteAddr(),
|
||||||
|
RawDstAddr: left.LocalAddr(),
|
||||||
|
}
|
||||||
|
|
||||||
|
tunnel.TCPIn() <- CTX.NewConnContext(right, metadata)
|
||||||
|
|
||||||
|
return left, nil
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue