mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-14 21:31:16 +08:00
44 lines
906 B
Go
44 lines
906 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
|
|
C "github.com/Dreamacro/clash/constant"
|
|
"github.com/Dreamacro/clash/proxy/http"
|
|
"github.com/Dreamacro/clash/proxy/socks"
|
|
"github.com/Dreamacro/clash/tunnel"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func main() {
|
|
cfg, err := C.GetConfig()
|
|
if err != nil {
|
|
log.Fatalf("Read config error: %s", err.Error())
|
|
}
|
|
|
|
port, socksPort := C.DefalutHTTPPort, C.DefalutSOCKSPort
|
|
section := cfg.Section("General")
|
|
if key, err := section.GetKey("port"); err == nil {
|
|
port = key.Value()
|
|
}
|
|
|
|
if key, err := section.GetKey("socks-port"); err == nil {
|
|
socksPort = key.Value()
|
|
}
|
|
|
|
err = tunnel.GetInstance().UpdateConfig()
|
|
if err != nil {
|
|
log.Fatalf("Parse config error: %s", err.Error())
|
|
}
|
|
|
|
go http.NewHttpProxy(port)
|
|
go socks.NewSocksProxy(socksPort)
|
|
|
|
sigCh := make(chan os.Signal, 1)
|
|
signal.Notify(sigCh, syscall.SIGINT, syscall.SIGTERM)
|
|
<-sigCh
|
|
}
|