rename Q3RCON_STALE_SESSION_TIMEOUT to Q3RCON_SESSION_TIMEOUT

This commit is contained in:
onyx-and-iris 2024-10-23 16:45:05 +01:00
parent 82ca15f70e
commit abc1ea9d3f

View File

@ -31,19 +31,19 @@ func main() {
host = "0.0.0.0" host = "0.0.0.0"
} }
staleTimeout, err := getEnvInt("Q3RCON_STALE_SESSION_TIMEOUT") sessionTimeout, err := getEnvInt("Q3RCON_SESSION_TIMEOUT")
if err != nil { if err != nil {
log.Fatalf("unable to parse Q3RCON_STALE_SESSION_TIMEOUT: %s", err.Error()) log.Fatalf("unable to parse Q3RCON_SESSION_TIMEOUT: %s", err.Error())
} }
for _, proxy := range strings.Split(proxies, ";") { for _, proxy := range strings.Split(proxies, ";") {
go start(host, proxy, staleTimeout) go start(host, proxy, sessionTimeout)
} }
<-make(chan int) <-make(chan int)
} }
func start(host, proxy string, staleTimeout int) { func start(host, proxy string, sessionTimeout int) {
port, target := func() (string, string) { port, target := func() (string, string) {
x := strings.Split(proxy, ":") x := strings.Split(proxy, ":")
return x[0], x[1] return x[0], x[1]
@ -52,7 +52,7 @@ func start(host, proxy string, staleTimeout int) {
c, err := udpproxy.New( c, err := udpproxy.New(
fmt.Sprintf("%s:%s", host, port), fmt.Sprintf("%s:%s", host, port),
fmt.Sprintf("127.0.0.1:%s", target), fmt.Sprintf("127.0.0.1:%s", target),
udpproxy.WithStaleTimeout(time.Duration(staleTimeout)*time.Minute)) udpproxy.WithSessionTimeout(time.Duration(sessionTimeout)*time.Minute))
if err != nil { if err != nil {
log.Fatal(err) log.Fatal(err)
} }