Configurations and other related files for Starlight Network infrastructure, made openly available.
1diff --git a/proxy.go b/proxy.go
2index 50b5772..cb0bfa9 100644
3--- a/proxy.go
4+++ b/proxy.go
5@@ -10,7 +10,7 @@ import (
6 func (instance *Config) handleConnection(clientConn *net.TCPConn) {
7 defer clientConn.Close()
8 targetTCPAddr := instance.Target.getTCPAddr()
9- log.Printf("Serving %s to %s\n", clientConn.RemoteAddr().String(), targetTCPAddr)
10+ log.Printf("Serving [REDACTED] to [REDACTED]")
11
12 targetConn, err := net.DialTCP("tcp", nil, targetTCPAddr)
13 checkErrFatal(err)