pactester 1.0.7 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News pactester 1.0.7 (Default branch)
# 1  
Old 04-12-2008
pactester 1.0.7 (Default branch)

Pactester is a tool to test proxy auto-configuration (PAC) files. PAC files are used by browsers to identify the correct proxy server for a given URL. Since the PAC file evaluation mechanism is generated inside the browser and cannot be accessed from outside, the only way to tell which proxy your browser will use for a specific URL is manual inspection of the PAC file. Unfortunately, this approach is error prone and quickly becomes impractical for large and complex PAC files. Pactester resolves this issue by simulating browser behavior. License: GNU Lesser General Public License (LGPL) Changes:
A new option was added for specifying client IP address (as returned by myIpAddress).Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
pacparser_just_find_proxy(3)				     Library Functions Manual				      pacparser_just_find_proxy(3)

NAME
pacparser_just_find_proxy - Finds proxy for a given PAC file, url and host. SYNOPSIS
#include <pacparser.h> char *pacparser_just_find_proxy ( const char *pacfile, const char *url, const char *host ); PARAMETERS
const char *pacfile PAC file. const char *url URL to find proxy for. const char *host Host part of the URL. DESCRIPTION
This function is a wrapper around functions pacparser_init, pacparser_parse_pac_file, pacparser_find_proxy and pacparser_cleanup. If you just want to find out proxy a given set of pac file, url and host, this is the function to call. This function takes care of all the ini- tialization and cleanup. RETURNS
Proxy string on success and NULL on error. SEE ALSO
pacparser_version(3), pacparser_init(3), pacparser_parse_pac_file(3), pacparser_parse_pac_string(3), pacparser_parse_pac(3), pac- parser_find_proxy(3), pacparser_cleanup(3), pacparser_setmyip(3), pacparser_enable_microsoft_extensions(3) c2man pacparser.h 14 March 2011 pacparser_just_find_proxy(3)