mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
12 lines
222 B
Go
12 lines
222 B
Go
package mixed
|
|
|
|
import (
|
|
"net/netip"
|
|
)
|
|
|
|
func newPAC(proxyAddr netip.AddrPort) string {
|
|
return `
|
|
function FindProxyForURL(url, host) {
|
|
return "SOCKS5 ` + proxyAddr.String() + `; PROXY ` + proxyAddr.String() + `";
|
|
}`
|
|
}
|