mirror of
https://github.com/fatedier/frp.git
synced 2024-11-08 09:04:52 +01:00
27 lines
418 B
Go
27 lines
418 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/fatedier/frp/pkg/utils/log"
|
|
"github.com/fatedier/frp/pkg/utils/conn"
|
|
)
|
|
|
|
func main() {
|
|
err := LoadConf("./frps.ini")
|
|
if err != nil {
|
|
os.Exit(-1)
|
|
}
|
|
|
|
log.InitLog(LogWay, LogFile, LogLevel)
|
|
|
|
l, err := conn.Listen(BindAddr, BindPort)
|
|
if err != nil {
|
|
log.Error("Create listener error, %v", err)
|
|
os.Exit(-1)
|
|
}
|
|
|
|
log.Info("Start frps success")
|
|
ProcessControlConn(l)
|
|
}
|