PROXY_INFO Structure

The PROXY_INFO data structure contains information about proxy settings for accessing a content source.

Syntax

typedef struct _PROXY_INFO{
  DWORD dwSize;
  LPCWSTR pcwszUserAgent;
  PROXY_ACCESS paUseProxy;
  BOOL fLocalBypass;
  DWORD dwPortNumber;
  LPCWSTR pcwszProxyName;
  LPCWSTR pcwszBypassList;
} PROXY_INFO;

Members

The following table describes members of the PROXY_INFO data structure.

Name Type Description
dwSize DWORD Actual size of the structure (bytes).
pcwszUserAgent LPCWSTR
paUseProxy PROXY_ACCESS Enumeration type.
fLocalBypass BOOL Bypass proxy for the local address. Used for intranet addresses.
dwPortNumber DWORD Port to use for the proxy.
pcwszProxyName LPCWSTR Name of the proxy server.
pcwszBypassList LPCWSTR List of specific servers, separated by semicolons, to bypass when going through the proxy.

Remarks

Values for the PROXY_INFO data structure are set in SharePoint Portal Server Central Administration. This data structure makes use of the PROXY_ACCESS enumeration.