I am building a program that uses The " FindProxyForURL(url,host) "
function (
http://home.netscape.com/eng/mozilla/2.0/relnotes/demo/proxy-live.html )
that browsers uses in order to evaluate which proxy server to send the
requests.
The program download this function and then run it in order to get the
proxy server address,
my question is about the Methods that function
FindProxyForURL(url,host)
uses like : isPlainHostName() dnsDomainIs() ,
localHostOrDomainIs() ,
isResolvable() dnsResolve() myIpAddress()
dnsDomainLevels()
shExpMatch() weekdayRange()
dateRange() timeRange()
where can i find their implementation in order to run this function in
my program.
the program run on linux , written in C and uses an API libraries
(http://www.nombas.com/us/toolkit/index.htm )
to run the FindProxyForURL(...) function.
Thanks in advance raanan.