#include “BlackIceDEVMODE.h”
BOOL SetFTPProxyDomain (BlackIceDEVMODE* pDevMode, DWORD dwConnectionID, LPCTSTR pStr);
Description
Sets the Domain for the Proxy Server, stored in the FTP connection, identified by dwConnectionID. The Domain is only used with the NTLM authentication method. The authentication method can be set using the SetFTPProxyAuthentication function.
Parameters
BlackIceDEVMODE* pDevMode
Pointer to the BlackIceDEVMODE structure.
DWORD dwConnectionID
The ID of the connection. The ID can be attained by using the GetFTPConnectionByIndex, GetFTPConnectionByName, GetSelectedFTPConnection or the AddFTPConnection functions.
LPCTSTR pStr
Pointer to a null terminated string that contains the Domain for the Proxy Server.
Return value
TRUE on success, otherwise FALSE.
Programming Notes
None
Code Example
None