Standardize logs

This commit is contained in:
Owen Schwartz
2024-11-23 17:34:58 -05:00
parent 4df89c208b
commit f48502dd08
5 changed files with 219 additions and 45 deletions

View File

@@ -1,6 +1,7 @@
package proxy
import (
"log"
"net"
"sync"
@@ -21,5 +22,6 @@ type ProxyTarget struct {
type ProxyManager struct {
targets []ProxyTarget
tnet *netstack.Net
log *log.Logger
sync.RWMutex // Protect access to targets slice
}