INTERNET_PROXY_INFOINTERNET_PROXY_INFO*
*Contents  *Index  *Topic Contents
*Previous Topic: INTERNET_PREFETCH_STATUS
*Next Topic: INTERNET_SCHEME

INTERNET_PROXY_INFO

typedef struct {
    DWORD dwAccessType;
    LPCSTR lpszProxy;
    LPCSTR lpszProxyBypass;
} INTERNET_PROXY_INFO, * LPINTERNET_PROXY_INFO;

Contains information that is supplied with the INTERNET_OPTION_PROXY value to get or set proxy information on a handle obtained from a call to the InternetOpen function.

dwAccessType
Access type. Can be one of the following values:
INTERNET_OPEN_TYPE_DIRECT Internet accessed through a direct connection.
INTERNET_OPEN_TYPE_PRECONFIG Applies only when setting proxy information.
INTERNET_OPEN_TYPE_PROXY Internet accessed using a proxy.
lpszProxy
Proxy server list.
lpszProxyBypass
Proxy bypass list.

Up Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.