You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
allow non-numeric proxy ips under certain circumstances
conditions that need to be met are:
1) chaintype strict
2) proxy_dns on
3) not the first proxy in the list
if these conditions are met, the dns name can be passed to be
receiving proxy and be resolved there.
addressing #246 (comment)
fprintf(stderr, "proxy %s has invalid value or is not numeric\n", host);
328
+
fprintf(stderr, "non-numeric ips are only allowed under the following circumstances:\n");
329
+
fprintf(stderr, "chaintype == strict (%s), proxy is not first in list (%s), proxy_dns active (%s)\n\n", bool_str(*ct==STRICT_TYPE), bool_str(count>0), bool_str(proxychains_resolver));
0 commit comments