1
0
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:
Vitaly the Alpaca (bot)
2025-07-18 19:54:06 +03:00
parent 12cebc92cc
commit e38754edea
73 changed files with 9832 additions and 8425 deletions

View 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);

View File

@@ -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);

View 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);

View File

@@ -0,0 +1,5 @@
 Domain = "127.0.0.1";
Login = "bayselonarrend";
Password = "12we...";
Result = OPI_FTP.GetConnectionSettings(Domain, 21, Login, Password);

View 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);;

View File

@@ -0,0 +1 @@
 Result = OPI_FTP.GetTlsSettings(True);

View File

@@ -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
View 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);