Bug #1821
Outbound proxy; using squid with authentication; bug on ProxyAuthenticator proxyUser:proxyPort instead of proxyUser:proxyPass
Status: | New | Start date: | 09/04/2013 | |
---|---|---|---|---|
Priority: | High | Due date: | ||
Assignee: | - | % Done: | 0% | |
Category: | - | Estimated time: | 0.01 hour | |
Target version: | v15 - MayPhlowerz | Spent time: | - | |
Component: |
Description
if (proxyHost != null && proxyPort != null)
{
mBinder.updateConfiguration(proxyType + "Proxy", proxyHost + ':' + proxyPort, false);
if (proxyUser != null && proxyPass != null)
{
if (proxyType.equalsIgnoreCase("socks5"))
{
mBinder.updateConfiguration("Socks5ProxyUsername", proxyUser, false);
mBinder.updateConfiguration("Socks5ProxyPassword", proxyPass, false);
}
else
mBinder.updateConfiguration(proxyType + "ProxyAuthenticator", proxyUser + ':' + proxyPort, false);
}
else if (proxyPass != null)
mBinder.updateConfiguration(proxyType + "ProxyAuthenticator", proxyUser + ':' + proxyPort, false);
}
Or use Drony/SandroProxy as proxy between ;)
supp.sandrob@gmail.com
History
#1 Updated by n8fr8 about 4 years ago
- Target version set to v14 - April Anons
#2 Updated by n8fr8 almost 4 years ago
- Target version changed from v14 - April Anons to v15 - MayPhlowerz