This repository was archived by the owner on Jul 9, 2023. It is now read-only.
This repository was archived by the owner on Jul 9, 2023. It is now read-only.
Tunnel agent exception error #744
Open
Description
I'm using "Titanium-Web-Proxy" as Nintendo's switch console download accelerator.
I use tunnel agents to do this function
var proxyServer = new ProxyServer();
var explicitEndPoint = new ExplicitProxyEndPoint(IPAddress.Any, 8000, false) {
};
explicitEndPoint.BeforeTunnelConnectRequest += ExplicitEndPoint_BeforeTunnelConnectRequest;
proxyServer.AddEndPoint(explicitEndPoint);
proxyServer.Start();
async private static Task ExplicitEndPoint_BeforeTunnelConnectRequest(object sender, Titanium.Web.Proxy.EventArguments.TunnelConnectSessionEventArgs e) {
e.DecryptSsl = false;
}
But there was an error downloading the game, and I used Fiddler without the problem
Use "Titanium-Web-Proxy" as a proxy game opportunity to prompt this error
2005-0140
With Fiddler, there's no such error, that you can download the game normally.