1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-05-04 20:54:02 +02:00
Files
OpenIntegrations/docs/en/examples/TCP/ProcessRequest.txt
T
Vitaly the Alpaca (bot) fb3113d189 Main build (Jenkins)
2025-11-13 16:26:19 +03:00

17 lines
500 B
Plaintext
Vendored

Address = "45.79.112.203:4242";
Data = "Echo this!" + Chars.LF;
Result = OPI_TCP.ProcessRequest(Address, Data);
Address = "tcpbin.com:4243";
ProxtUser = "proxyuser";
ProxyPassword = "12we...";
ProxyAddress = "127.0.0.1";
ProxyPort = "1080";
Proxy = OPI_TCP.GetProxySettings(ProxyAddress, ProxyPort, "socks5", ProxtUser, ProxyPassword);
Tls = OPI_TCP.GetTLSSettings(True);
Result = OPI_TCP.ProcessRequest(Address, Data, , Tls, Proxy);