web_set_proxy_bypass_local
Specifies whether or not the proxy server should bypass local addresses.
C Language
int web_set_proxy_bypass_local( const char *no_local );
Java Language
int object.set_proxy_bypass_local( String no_local);
Argument | Description |
---|---|
object | An expression evaluating to an object of type WebApi. Usually web for Java. See
Function and Constant Prefixes. |
no_local | A switch indicating whether or not to bypass local addresses. "1" - Bypass local addresses "0" - Do not bypass local addresses |
Return Values
This function returns LR_PASS (0) on success, and LR_FAIL (1) on failure.
Parameterization
The following argument(s) can be parameterized using standard parameterization: no_local
General Information
The web_set_proxy_bypass_local function is a service function that specifies whether or not the proxy server should bypass local (intranet) addresses. This function overrides the runtime settings proxy option Do not use proxy server for local (intranet) addresses. If the proxy bypass string contains <local>, then neither this function nor the UI check box will have an effect: local addresses will always be bypassed.
This function is supported for all web scripts.