Does TN3135 apply to URLSessionConfiguration's proxyConfigurations?

Looking into making requests using URLSession via a proxy, on watchOS, and found that in URLSessionConfiguration, there's a proxyConfigurations property.

However, since ProxyConfiguration is part of the Network framework, does it means that TN3135 low level networking rules also applies in this case?

does it means that TN3135 low level networking rules also applies in this case?

Not necessarily. Network framework has a lot of API and it’s only the stuff that ‘hits the wire’ that’s affected by the rules in TN3135.

However, URLSession already does a bunch of proxying on watchOS [1] and so it’s not clear whether applying your own proxies would be effective.

Did you try it out?

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

[1] To a background daemon (even for standard sessions!) and potentially to the paired iPhone.

Does TN3135 apply to URLSessionConfiguration's proxyConfigurations?
 
 
Q