mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 11:42:43 +08:00
43 lines
860 B
Go
43 lines
860 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"os/signal"
|
||
|
"syscall"
|
||
|
|
||
|
C "github.com/Dreamacro/clash/constant"
|
||
|
"github.com/Dreamacro/clash/proxy"
|
||
|
"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 proxy.NewHttpProxy(port)
|
||
|
go proxy.NewSocksProxy(socksPort)
|
||
|
|
||
|
sigCh := make(chan os.Signal, 1)
|
||
|
signal.Notify(sigCh, syscall.SIGINT, syscall.SIGTERM)
|
||
|
<-sigCh
|
||
|
}
|