1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-25 00:45:24 +00:00
v2fly/release/server/main.go

69 lines
1.8 KiB
Go
Raw Normal View History

2015-09-12 09:51:42 +00:00
package main
2015-09-12 18:36:21 +00:00
import (
"flag"
"io/ioutil"
"path/filepath"
2015-09-12 18:36:21 +00:00
"github.com/v2ray/v2ray-core"
"github.com/v2ray/v2ray-core/log"
2015-09-13 18:01:50 +00:00
// The following are neccesary as they register handlers in their init functions.
2015-09-12 18:36:21 +00:00
_ "github.com/v2ray/v2ray-core/net/freedom"
_ "github.com/v2ray/v2ray-core/net/socks"
_ "github.com/v2ray/v2ray-core/net/vmess"
)
var (
2015-09-12 20:11:54 +00:00
configFile = flag.String("config", "", "Config file for this Point server.")
2015-09-15 22:06:22 +00:00
logLevel = flag.String("loglevel", "", "Level of log info to be printed to console, available value: debug, info, warning, error")
2015-09-12 18:36:21 +00:00
)
2015-09-12 09:51:42 +00:00
func main() {
2015-09-12 18:36:21 +00:00
flag.Parse()
2015-09-15 22:06:22 +00:00
switch *logLevel {
case "debug":
log.SetLogLevel(log.DebugLevel)
case "info":
log.SetLogLevel(log.InfoLevel)
case "warning":
log.SetLogLevel(log.WarningLevel)
case "error":
log.SetLogLevel(log.ErrorLevel)
}
2015-09-12 18:36:21 +00:00
if configFile == nil || len(*configFile) == 0 {
panic(log.Error("Config file is not set."))
}
rawVConfig, err := ioutil.ReadFile(*configFile)
if err != nil {
panic(log.Error("Failed to read config file (%s): %v", *configFile, err))
}
2015-09-12 20:11:54 +00:00
vconfig, err := core.LoadConfig(rawVConfig)
2015-09-12 18:36:21 +00:00
if err != nil {
2015-09-12 20:11:54 +00:00
panic(log.Error("Failed to parse Config: %v", err))
2015-09-12 18:36:21 +00:00
}
if !filepath.IsAbs(vconfig.InboundConfig.File) && len(vconfig.InboundConfig.File) > 0 {
vconfig.InboundConfig.File = filepath.Join(filepath.Dir(*configFile), vconfig.InboundConfig.File)
2015-09-12 18:36:21 +00:00
}
if !filepath.IsAbs(vconfig.OutboundConfig.File) && len(vconfig.OutboundConfig.File) > 0 {
vconfig.OutboundConfig.File = filepath.Join(filepath.Dir(*configFile), vconfig.OutboundConfig.File)
2015-09-12 18:36:21 +00:00
}
2015-09-12 20:11:54 +00:00
vPoint, err := core.NewPoint(vconfig)
2015-09-12 18:36:21 +00:00
if err != nil {
2015-09-12 20:11:54 +00:00
panic(log.Error("Failed to create Point server: %v", err))
2015-09-12 18:36:21 +00:00
}
err = vPoint.Start()
if err != nil {
2015-09-12 20:11:54 +00:00
log.Error("Error starting Point server: %v", err)
2015-09-12 18:36:21 +00:00
}
2015-09-12 09:51:42 +00:00
2015-09-12 18:36:21 +00:00
finish := make(chan bool)
<-finish
2015-09-12 09:51:42 +00:00
}