Hi
I am trying to configure all navigation through my own proxy, I made a change in the net/proxy_resolution/proxy_config_service_ios.cc file to only use a PAC file, apparently the PAC file is recognized and the server is consulted (I have log records in the proxy), but the navigation does not go through the proxy.
void GetCurrentProxyConfig(const NetworkTrafficAnnotationTag traffic_annotation,
ProxyConfigWithAnnotation* config) {
...
...
// Source
proxy_config.set_from_system(true);
*config = ProxyConfigWithAnnotation(proxy_config, traffic_annotation);
}
Another some change is required so that the navigation goes through my proxy?
Thanks!
Diego