|
Summary
The password for the firewall authentication.
Description
The FwPassword property specifies a valid password that is required during authentication when connecting to the destination host through a firewall. This property must be set before
calling the FwConnect method. A valid password is required when connecting to SOCKS version 5 server if the authentication method (FwAuthMethods) specified is "2" (Username/Password
authentication protocol).
This property can be changed at design time or at run time before a connection has been established by calling the FwConnect method.
The property does not have any default value.
Example
Imap.FwAuthMethods = "2"
Imap.FwUsername = "joe"
Imap.FwPassword = "distinct"
Result = Imap.FwConnect (Host, FwServer, 1080)
If (Result = IMAP_SUCCESS) Then
MessageBox "Successful connection", "sample application", 64
End If
|