File: libproxy_test_pac_file_syntaxerror.test.pac

package info (click to toggle)
libproxy 0.3.1-2%2Bsqueeze1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,212 kB
  • ctags: 455
  • sloc: sh: 10,487; ansic: 2,826; makefile: 185; cpp: 88; python: 24
file content (8 lines) | stat: -rw-r--r-- 223 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
function FindProxyForURL(url, host)
{
  /* Here is an intentional error to test the pac runners.
     The correct call would be myIpAddress... DO NOT FIX */
  myIP=myNetworkAddress();
  return "PROXY " + myIP + ":80";
  
}