Allow specifying PROXY via BIND network

This commit is contained in:
WeebDataHoarder
2025-04-11 05:47:32 +02:00
parent 3060188f44
commit 0da12cfdab

View File

@@ -32,6 +32,11 @@ import (
)
func setupListener(network, address, socketMode string, proxy bool) (net.Listener, string) {
if network == "proxy" {
network = "tcp"
proxy = true
}
formattedAddress := ""
switch network {
case "unix":