Proxy configuration in URLSession does not work on Windows Swift 6.0.2

Hi,

This code works fine on macOS, but not working on Windows. Actually, the URLSession will automatically use the System proxy configuration by default on Mac. But on Windows it seems like nothing effect.

let conf = URLSessionConfiguration.default
conf.connectionProxyDictionary = [
"SOCKSEnable": 1,
"SOCKSProxy": "127.0.0.1",
"SOCKSPort": 10808
]
let session = URLSession(configuration: conf)

Any idea is appreciated.