You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-25 22:12:29 +02:00
Main build (Jenkins)
This commit is contained in:
8
docs/en/examples/FTP/CloseConnection.txt
vendored
Normal file
8
docs/en/examples/FTP/CloseConnection.txt
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
Domain = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
|
||||
FTPSettings = OPI_FTP.GetConnectionSettings(Domain, 21);
|
||||
Connection = OPI_FTP.CreateConnection(FTPSettings);
|
||||
|
||||
Result = OPI_FTP.CloseConnection(Connection);
|
||||
8
docs/en/examples/FTP/CreateConnection.txt
vendored
8
docs/en/examples/FTP/CreateConnection.txt
vendored
@@ -4,15 +4,15 @@
|
||||
|
||||
// Simple connection
|
||||
|
||||
FTPSettings = OPI_FTP.GetConnectionSettings(Domain, 21);
|
||||
FTPSettings = OPI_FTP.GetConnectionSettings(Domain, 21, Login, Password);
|
||||
Result = OPI_FTP.CreateConnection(FTPSettings);
|
||||
|
||||
// TLS connection through proxy
|
||||
|
||||
FTPDomain = "172.33.0.11";
|
||||
ProxyAddress = "127.0.0.1";
|
||||
FTPInternalAddress = "172.33.0.11";
|
||||
ProxyAddress = "127.0.0.1";
|
||||
|
||||
FTPSettings = OPI_FTP.GetConnectionSettings(FTPDomain, 21, Login, "12we3456!2154");
|
||||
FTPSettings = OPI_FTP.GetConnectionSettings(FTPInternalAddress, 21, Login, Password);
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, 1080, "socks5", "proxyuser", Password);
|
||||
TLSSettings = OPI_FTP.GetTlsSettings(True);
|
||||
|
||||
|
||||
10
docs/en/examples/FTP/GetConnectionConfiguration.txt
vendored
Normal file
10
docs/en/examples/FTP/GetConnectionConfiguration.txt
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
FTPDomain = "172.33.0.11";
|
||||
ProxyAddress = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
|
||||
FTPSettings = OPI_FTP.GetConnectionSettings(FTPDomain, 21, Login, Password);
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, 1080, "socks5", "proxyuser", Password);
|
||||
TLSSettings = OPI_FTP.GetTlsSettings(True);
|
||||
|
||||
Result = OPI_FTP.GetConnectionConfiguration(FTPSettings, ProxySettings, TLSSettings);
|
||||
5
docs/en/examples/FTP/GetConnectionSettings.txt
vendored
Normal file
5
docs/en/examples/FTP/GetConnectionSettings.txt
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
Domain = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
|
||||
Result = OPI_FTP.GetConnectionSettings(Domain, 21, Login, Password);
|
||||
7
docs/en/examples/FTP/GetProxySettings.txt
vendored
Normal file
7
docs/en/examples/FTP/GetProxySettings.txt
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
Address = "127.0.0.1";
|
||||
Login = "proxyuser";
|
||||
Password = "12we...";
|
||||
Type = "socks5";
|
||||
Port = 1080;
|
||||
|
||||
Result = OPI_FTP.GetProxySettings(Address, Port, Type, Login, Password);;
|
||||
1
docs/en/examples/FTP/GetTlsSettings.txt
vendored
Normal file
1
docs/en/examples/FTP/GetTlsSettings.txt
vendored
Normal file
@@ -0,0 +1 @@
|
||||
Result = OPI_FTP.GetTlsSettings(True);
|
||||
2
docs/en/examples/FTP/GetWelcomeMessage.txt
vendored
2
docs/en/examples/FTP/GetWelcomeMessage.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Domain = "127.0.0.1";
|
||||
Domain = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
|
||||
|
||||
8
docs/en/examples/FTP/IsConnector.txt
vendored
Normal file
8
docs/en/examples/FTP/IsConnector.txt
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
Domain = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
|
||||
FTPSettings = OPI_FTP.GetConnectionSettings(Domain, 21);
|
||||
Connection = OPI_FTP.CreateConnection(FTPSettings);
|
||||
|
||||
Result = OPI_FTP.IsConnector(Connection);
|
||||
Reference in New Issue
Block a user