| |
| HCLIENT WINAPI HttpProxyConnect(
|
| |
UINT nProxyType, |
|
| |
LPCTSTR lpszProxyHost, |
|
| |
UINT nProxyPort, |
|
| |
LPCTSTR lpszProxyUser, |
|
| |
LPCTSTR lpszProxyPassword, |
|
| |
LPCTSTR lpszRemoteHost, |
|
| |
UINT nRemotePort, |
|
| |
UINT nTimeout, |
|
| |
DWORD dwOptions, |
|
| |
DWORD dwVersion, |
|
| |
LPSECURITYCREDENTIALS lpCredentials |
|
| );
|
The HttpProxyConnect function is used to establish a
synchronous connection with a proxy server.
Parameters
- nProxyType
- An unsigned integer which specifies the type of proxy that the
client is connecting to. The supported proxy server types are as
follows:
| Constant |
Description |
| HTTP_PROXY_NONE |
A direct connection will be established with the server. When
this value is specified the proxy parameters are ignored. |
| HTTP_PROXY_STANDARD |
A standard connection is established through the specified
proxy server, and all resource requests will be specified using a
complete URL. This proxy type should be used with standard
connections. |
| HTTP_PROXY_SECURE |
A secure connection is established through the specified proxy
server. This proxy type should be used with secure connections and
the HTTP_OPTION_SECURE option should also be set via the
dwOptions parameter. |
| HTTP_PROXY_WINDOWS |
The configuration options for the current system should be
used. If the system is configured to use a proxy server, then the
connection will be automatically established through that proxy;
otherwise, a direct connection to the server is established. These
settings are defined through the Internet Options in the control
panel and are the same proxy server settings used by Internet
Explorer. |
- lpszProxyHost
- A pointer to a null-terminated string which specifies the proxy
server host name or IP address. This argument is ignored if the
proxy type is set to HTTP_PROXY_NONE or HTTP_PROXY_WINDOWS and no
proxy configuration has been specified for the local system.
- nProxyPort
- The port number that the proxy server is listening for
connections on. A value of zero specifies that the default port
number 80 should be used. Note that in most cases, a proxy server
is not configured to use the default port. This argument is ignored
if the proxy type is set to HTTP_PROXY_NONE or HTTP_PROXY_WINDOWS
and no proxy configuration has been specified for the local
system.
- lpszProxyUser
- A pointer to a null-terminated string which specifies the user
name that will be used to authenticate the client session to the
proxy server. If the server does not require user authentication,
then a NULL pointer may be passed in this argument.
- lpszProxyPassword
- A pointer to a null-terminated string which specifies the
password that will be used to authenticate the client session to
the proxy server. If the server does not require user
authentication, then a NULL pointer may be passed in this
argument.
- lpszRemoteHost
- A pointer to a null-terminated string which specifies the name
of the server to connect to through the proxy server. This may be a
fully-qualified domain name or an IP address.
- nRemotePort
- The port number the server is listening on. A value of zero
specifies that the default port number 80 should be used. For
standard connections, the default port number is 80. For secure
connections, the default port number is 443.
- nTimeout
- The number of seconds that the client will wait for a response
from the server before failing the current operation.
- dwOptions
- An unsigned integer that specifies one or more options. This
parameter is constructed by using a bitwise operator with any of
the following values:
| Constant |
Description |
| HTTP_OPTION_NOCACHE |
This instructs the server to not return a cached copy of the
resource. When connected to an HTTP 1.0 or earlier server, this
directive may be ignored. |
| HTTP_OPTION_KEEPALIVE |
This instructs the server to maintain a persistent connection
between requests. This can improve performance because it
eliminates the need to establish a separate connection for each
resource that is requested. If the server does not support the
keep-alive option, the client will automatically reconnect when
each resource is requested. Although it will not provide any
performance benefits, this allows the option to be used with all
servers. |
| HTTP_OPTION_REDIRECT |
This option specifies that the client should automatically
handle resource redirection. If the server indicates that the
requested resource has moved to a new location, the client will
close the current connection and request the resource from the new
location. Note that it is possible that the redirected resource
will be located on a different server. |
| HTTP_OPTION_ERRORDATA |
This option specifies that the client should return the content
of an error response from the server, rather than returning an
error code. Note that this option will disable automatic resource
redirection, and should not be used with HTTP_OPTION_REDIRECT. |
| HTTP_OPTION_SECURE |
This option specifies that the client should attempt to
establish a secure connection with the server. Note that the server
must support secure connections using either the SSL or TLS
protocol. |
| HTTP_OPTION_FREETHREAD |
This option specifies that the handle returned by this function
may be used by any thread, and is not limited to the thread which
created it. The application is responsible for ensuring that access
to the handle is synchronized across multiple threads. |
- dwVersion
- The requested protocol version used when sending requests to
the server. The high word should specify the major version, and the
low word should specify the minor version number. The HTTPVERSION
macro can be used to create version value.
- lpCredentials
- Pointer to credentials structure SECURITYCREDENTIALS. This parameter
is only used if the HTTP_OPTION_SECURE option is specified for the
connection. This parameter may be NULL, in which case no client
credentials will be provided to the server. If client credentials
are required, the fields dwSize, lpszCertStore, and
lpszCertName must be defined, while other fields may be left
undefined. Set dwSize to the size of the
SECURITYCREDENTIALS structure.
Return Value
If the function succeeds, the return value is a handle to the
client session. If the function fails, the return value is
INVALID_CLIENT. To get extended error information, call
HttpGetLastError.
Remarks
If the HTTP_PROXY_WINDOWS proxy type is specified, then the
proxy configuration for the local system is used. This is the same
configuration used by Internet Explorer, and can be changed by
selecting the Internet Options icon in the control panel, then
clicking the LAN Settings button the Connections tab. If no proxy
server has been defined, then the proxy-related parameters will be
ignored and the function will establish a connection directly to
the server.
The username and password information is only used when
connecting to a server which supports version 1.1 or later of the
protocol.
The dwOptions argument can be used to specify the
threading model that is used by the library when a connection is
established. By default, the handle is initially attached to the
thread that created it. From that point on, until the it is
released, only the owner may call functions using that handle. The
ownership of the handle may be transferred from one thread to
another using the HttpAttachThread function.
Specifying the HTTP_OPTION_FREETHREAD option enables any thread
to call any function using the handle, regardless of which thread
created it. It is important to note that this option disables
certain internal safety checks which are performed by the library
and may result in unexpected behavior unless access to the handle
is synchronized. If one thread calls a function in the library, it
must ensure that no other thread will call another function at the
same time using the same handle.
Requirements
Client: Requires Windows 7, Windows Vista or Windows
XP.
Server: Requires Windows Server 2008 or Windows Server
2003.
Header: Include cstools7.h.
Library: Use cshtpav7.lib.
Unicode: Implemented as Unicode and ANSI versions.
See Also
HttpAsyncConnect, HttpAsyncProxyConnect, HttpConnect, HttpDisconnect, HttpInitialize
|
|