For example, I have data for ftp connection:
szFtpServer = ftp.server.com
szFtpUsername = test_pc
szFtpPassword = go_connect
Ftp connection runs without problem.
normal connection:
How are the dates of connection to look, if it is to go over non-transparent proxy (firewall-proxy)?
e.g. in Total-Commander - connect to ftp, host name.., user name, password + option "Use firewall (proxy server)" -> connect method ...., host name, user name, password. How can it realize in PBWin?
Example please.
Thanks.
szFtpServer = ftp.server.com
szFtpUsername = test_pc
szFtpPassword = go_connect
Ftp connection runs without problem.
normal connection:
Code:
hInetConnect = InternetConnect(BYVAL hInetOpen, _ BYVAL VARPTR(szFtpServer), _ BYVAL %INTERNET_DEFAULT_FTP_PORT, _ BYVAL VARPTR(szFtpUsername), _ BYVAL VARPTR(szFtpPassword), _ BYVAL %INTERNET_SERVICE_FTP, _ BYVAL %INTERNET_FLAG_PASSIVE, _ BYVAL 0)
e.g. in Total-Commander - connect to ftp, host name.., user name, password + option "Use firewall (proxy server)" -> connect method ...., host name, user name, password. How can it realize in PBWin?
Example please.
Thanks.
Comment